美文网首页
关于在onResume 获取 getIntent 值失败

关于在onResume 获取 getIntent 值失败

作者: 会Android的摄影爱好者 | 来源:发表于2016-12-08 16:49 被阅读117次


    处理方法 :

    只需要重写 Activity 的 onNewIntent();
    然后调用 setintent();

     代码

    public void onNewIntent(Intent intent){

           super.onNewIntent(intent);

           setIntent(intent);

    }

    相关文章

      网友评论

          本文标题:关于在onResume 获取 getIntent 值失败

          本文链接:https://www.haomeiwen.com/subject/ylhfdttx.html