Android M request permission non activity

前端 未结 6 1949
渐次进展
渐次进展 2020-12-11 14:38

My widget makes calls to secure permissions outside of an Activity scope. Is it possible to request permissions for Android M outside of an

6条回答
  •  自闭症患者
    2020-12-11 15:19

    You can only request permission either from Activity or from fragment.

    Figure out a point in your Activity or Fragment where you feel App will require a permission, then call requestPermission method. sending notification will not work because you wanna your code processing un-till you get that requested permissions, and then resume your functionality from onRequestPermissionResult() method.

提交回复
热议问题