How to request Multiple Permissions at once in android || Android studio tutorial

Поділитися
Вставка
  • Опубліковано 4 лис 2024

КОМЕНТАРІ • 21

  • @dilichiliwilimili
    @dilichiliwilimili 3 роки тому

    Pretty good! I just have to add that in android 6, if you keep pressing the button it will keep asking for the same permissions so you need extra code to avoid that.

  • @mexicousa3245
    @mexicousa3245 Рік тому

    Gracias muy bien explicado

  • @ghilastouati3258
    @ghilastouati3258 2 роки тому

    thank you bro, you saved my ife

  • @joaolucasdacruz2057
    @joaolucasdacruz2057 2 роки тому

    Thanks for the video, it helped!

  • @abhishekaich9951
    @abhishekaich9951 3 роки тому +1

    Can you make a video to ask manage all files permission in android 11

  • @comdotdevelopers3387
    @comdotdevelopers3387 3 роки тому

    Srrr 1 create a video user se permission lake uske data ko kaise assess kare or apne server pe kase save kare User data ko
    Need help 😑😑😟

  • @adityaroy1851
    @adityaroy1851 3 роки тому +1

    Sir android 11 storage permission tutorial make...

  • @Francioz
    @Francioz 3 роки тому

    why in java? now it is kotlin pleasseeeeee

  • @gilbertosoares7181
    @gilbertosoares7181 2 роки тому

    🥰😍

  • @rogercolque
    @rogercolque 3 роки тому

    nice and without libs

  • @garudam4473
    @garudam4473 3 роки тому

    Great 😍😍😍

  • @gadriel0000
    @gadriel0000 2 роки тому

    Doesn't work for android 12.

    • @TechnicalCoding
      @TechnicalCoding  2 роки тому

      Soon I will make a video about complete changes in Android 12

  • @gamingytkajal3359
    @gamingytkajal3359 2 роки тому

    Agar hindi video hoti toh easily explain hota

  • @amritanshusemalti2350
    @amritanshusemalti2350 3 роки тому

    Will you help me?

  • @leventestancz4522
    @leventestancz4522 3 роки тому

    Hey, where can I put an AlertDialog which ask for the permission again if it's denied?
    This:
    new AlertDialog.Builder(this)
    .setTitle("Permission needed:")
    .setMessage("Permission needed because...")
    .setPositiveButton("Engedélyezés", new DialogInterface.OnClickListener() {
    @Override
    public void onClick(DialogInterface dialogInterface, int i) {
    //asking for permission again
    }
    })
    .setNegativeButton("Tiltás", new DialogInterface.OnClickListener() {
    @Override
    public void onClick(DialogInterface dialogInterface, int i) {
    dialogInterface.dismiss();
    }
    })
    .create().show();