对Context的重新思考

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了对Context的重新思考相关的知识,希望对你有一定的参考价值。

  1. android.view.WindowManager$BadTokenException: Unable to add window- token null is not valid; is your activity running?

    问题发生的情景:当我从一个activity跳转到另外一个activity时,第二次跳转崩溃。后来终于找到了原因

技术分享

   第一次progDialog实例化用的是第二个activity的context,然后第二次进入第二个activity的

 候progDialog并没有实例化,progDialog还保留着第2个activity第一次的context,但是这个时候的

  activity已经销毁,context也就不存在 。


 不要纯粹地节约一个new的过程,而不去创建对象。

 但是每次都new一个对象也不是明智之举,于是利用view.getContext来对Context进行一下判断可以

对代码进行一下优化

 

if (progDialog == null) {  
    progDialog = new ProgressDialog(context);
}else{
    if(progDialog.getContext() != context){
        progDialog = new ProgressDialog(context);
    }
}

 



本文出自 “行意天下” 博客,请务必保留此出处http://4259297.blog.51cto.com/4249297/1793253

以上是关于对Context的重新思考的主要内容,如果未能解决你的问题,请参考以下文章

Choose unique values for the 'webAppRootKey' context-param in your web.xml files! 错误的解决(代码片段

如何让 videoView 在片段内播放?

Android从Fragment跳转Activty

如何重新附加片段(片段未附加到活动 Kotlin)

OnDetach/onAttach 片段重新创建片段活动

Android代码片段