onRequestPermissionsResult()中的Android java.lang.IllegalStateException [英] Android java.lang.IllegalStateException in onRequestPermissionsResult()

查看:122
本文介绍了onRequestPermissionsResult()中的Android java.lang.IllegalStateException的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在使用SD卡,因此尝试在运行时获取许可.这是代码:

I am working with sd card and so trying to get permission in runtime. Here is the code:

public class MainActivity extends AppCompatActivity implements FileListFragment.OnFragmentInteractionListener {

private static final int MY_PERMISSIONS_REQUEST_READ_EXTERNAL_STORAGE = 111;

@Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);

        if (ContextCompat.checkSelfPermission(this, Manifest.permission.READ_EXTERNAL_STORAGE) != PackageManager.PERMISSION_GRANTED) {
            ActivityCompat.requestPermissions(this, new String[]{Manifest.permission.READ_EXTERNAL_STORAGE}, MY_PERMISSIONS_REQUEST_READ_EXTERNAL_STORAGE);
        }

         ...................
         ................
    }

@Override
    public void onRequestPermissionsResult(int requestCode,
                                           String permissions[], int[] grantResults) {
        switch (requestCode) {
            case MY_PERMISSIONS_REQUEST_READ_EXTERNAL_STORAGE: {
                // If request is cancelled, the result arrays are empty.
                if (grantResults.length > 0 && grantResults[0] == PackageManager.PERMISSION_GRANTED) {

                    FileListFragment fileListFragment = FileListFragment.newInstance(0);  // **Error line**
        getSupportFragmentManager().beginTransaction()
                .add(R.id.fragment_container, fileListFragment)
                .commit();
                } else {

                    finish();
                }
                return;
            }
        }
    }

.............................
..................................
..........................

}

一旦我允许,它就会抛出失败,导致结果信息ResultInfo {who = @ android:requestPermissions:,request = 111,result = -1,data = Intent {act = android.content. pm.action.REQUEST_PERMISSIONS(有附加功能)}}到活动{com.kaushik.fileexplorer/com.kaushik.fileexplorer.MainActivity}:java.lang.IllegalStateException:无法在onSaveInstanceState"之后执行此操作.这是详细信息logcat:

As soon as I am allow the permission it is throwing "Failure delivering result ResultInfo{who=@android:requestPermissions:, request=111, result=-1, data=Intent { act=android.content.pm.action.REQUEST_PERMISSIONS (has extras) }} to activity {com.kaushik.fileexplorer/com.kaushik.fileexplorer.MainActivity}: java.lang.IllegalStateException: Can not perform this action after onSaveInstanceState". Here is the details logcat:

08-23 16:49:29.497 3215-3215/com.kaushik.fileexplorer E/AndroidRuntime: FATAL EXCEPTION: main
                                                                        Process: com.kaushik.fileexplorer, PID: 3215
                                                                        java.lang.RuntimeException: Failure delivering result ResultInfo{who=@android:requestPermissions:, request=111, result=-1, data=Intent { act=android.content.pm.action.REQUEST_PERMISSIONS (has extras) }} to activity {com.kaushik.fileexplorer/com.kaushik.fileexplorer.MainActivity}: java.lang.IllegalStateException: Can not perform this action after onSaveInstanceState
                                                                            at android.app.ActivityThread.deliverResults(ActivityThread.java:3699)
                                                                            at android.app.ActivityThread.handleSendResult(ActivityThread.java:3742)
                                                                            at android.app.ActivityThread.-wrap16(ActivityThread.java)
                                                                            at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1393)
                                                                            at android.os.Handler.dispatchMessage(Handler.java:102)
                                                                            at android.os.Looper.loop(Looper.java:148)
                                                                            at android.app.ActivityThread.main(ActivityThread.java:5417)
                                                                            at java.lang.reflect.Method.invoke(Native Method)
                                                                            at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:726)
                                                                            at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:616)
                                                                         Caused by: java.lang.IllegalStateException: Can not perform this action after onSaveInstanceState
                                                                            at android.support.v4.app.FragmentManagerImpl.checkStateLoss(FragmentManager.java:1533)
                                                                            at android.support.v4.app.FragmentManagerImpl.enqueueAction(FragmentManager.java:1551)
                                                                            at android.support.v4.app.BackStackRecord.commitInternal(BackStackRecord.java:696)
                                                                            at android.support.v4.app.BackStackRecord.commit(BackStackRecord.java:662)
                                                                            at com.kaushik.fileexplorer.MainActivity.onRequestPermissionsResult(MainActivity.java:76)
                                                                            at android.app.Activity.dispatchRequestPermissionsResult(Activity.java:6553)
                                                                            at android.app.Activity.dispatchActivityResult(Activity.java:6432)
                                                                            at android.app.ActivityThread.deliverResults(ActivityThread.java:3695)
                                                                            at android.app.ActivityThread.handleSendResult(ActivityThread.java:3742) 
                                                                            at android.app.ActivityThread.-wrap16(ActivityThread.java) 
                                                                            at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1393) 
                                                                            at android.os.Handler.dispatchMessage(Handler.java:102) 
                                                                            at android.os.Looper.loop(Looper.java:148) 

该代码有什么问题?

推荐答案

您应该添加commitAllowingStateLoss()

You should add commitAllowingStateLoss()

 FileListFragment fileListFragment = FileListFragment.newInstance(0);  // **Error line**
        getSupportFragmentManager().beginTransaction()
                .add(R.id.fragment_container, fileListFragment)
                .commitAllowingStateLoss();

请检查此链接

这篇关于onRequestPermissionsResult()中的Android java.lang.IllegalStateException的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆