Is there any way to ask permission programmatically?

后端 未结 6 2047
名媛妹妹
名媛妹妹 2020-12-03 21:07

Is there any way to ask permission programmatically in android ? I don\'t want to add all permission to AndroidManifest.xml. So is there any dialog that asks for permission

6条回答
  •  南笙
    南笙 (楼主)
    2020-12-03 21:24

    Android M introduced Runtime permissions, which everyone has been waiting for. Also the permissions are now categorized into NORMAL and DANGEROUS, where NORMAL permissions are granted by default and DANGEROUS permissions are requested when they are needed. Also DANGEROUS permissions can be revoked by the user at any time from the device's Settings menu.

提交回复
热议问题