Request runtime permissions from v4.Fragment and have callback go to Fragment?

前端 未结 10 1097
我寻月下人不归
我寻月下人不归 2020-12-01 01:35

I\'m having a weird issue that is causing a conflict. I had to switch to native Fragments to fix it, but there are bugs with that.

My original problem:

10条回答
  •  生来不讨喜
    2020-12-01 01:54

    If you need to get the permissionResult in fragment v4 make sure you use

    Fragment.requestPermission(String[], int);
    

    instead of

    AppCompat.requestPermission(Activity, String[], int)
    

    Check out this answer!

提交回复
热议问题