其他分享
首页 > 其他分享> > 棉花糖权限:组件生命周期

棉花糖权限:组件生命周期

作者:互联网

查看棉花糖权限模式,它在Activity或Fragment的onResume()之前调用onRequestPermissionsResult().

问题陈述 :

如果我们对操作结果执行了任何操作(即允许权限),例如我要删除当前片段,则不可能,因为片段和容器活动都处于暂停状态.那么有什么方法可以在onRequestPermissionsResult()之前调用onResume()吗?

解决方案,我正在使用

我正在使用权限标志,正在onRequestPermissionsResult()上对其进行重置,并在onResume()上对其进行验证.但这在我看来是一种令人困惑的方式.

解决方法:

无法更改实现这些回调的顺序,但是您可以轻松地解决它.我将展示两种不同的方式:

只需发布:

private static final Handler uiHandler = new Handler(Looper.getMainLooper());

@Override
public void onRequestPermissionsResult (int requestCode, String[] permissions, int[] grantResults) {
    if(... condition ...)
        uiHandler.post(onPermission_condition);
}

private Runnable onPermission_condition = new Runnable(){
    @Override
    public void run(){
        ... do stuff here
    }
}

}

使用标志:

private boolean shouldDoStuff = false;

@Override
public void onRequestPermissionsResult (int requestCode, String[] permissions, int[] grantResults) {
    if(... condition ...)
        shouldDoStuff = true;
}

@Override
public void onResume(){
  super.onResume();
  if(shouldDoStuff) {
     shouldDoStuff = false;
     ... do stuff here  
  }
}

标签:android-permissions,android-6-0-marshmallow,android-lifecycle,android
来源: https://codeday.me/bug/20191027/1945012.html