码迷,mamicode.com
首页 > 其他好文 > 详细

Fragment not attached to Activity

时间:2015-01-23 16:24:48      阅读:106      评论:0      收藏:0      [点我收藏+]

标签:fragment

当我点击返回按钮,返回桌面的时候,就会报错,Fragment not attached to Activity这个错误,看logcat里是因为

Bitmap bitmap = BitmapFactory.decodeResource(getResources(),
R.drawable.battery_full);是因为用到了getResources()这个方法,


原因是这样的Fragment在Activity中加载前就调用了或者是在Activity消失后继续调用getResources()方法,获取资源的一些方法。


怎么解决呢??


在Fragment中有 isAdded()这个方法,只需要在加载资源前进行判断即可:

if (isAdded()) {
Bitmap bitmap = BitmapFactory.decodeResource(getResources(),
					R.drawable.battery_full);
}


sAdded()官方解释:

isAdded()
Return true if the fragment is currently added to its activity.



Fragment not attached to Activity

标签:fragment

原文地址:http://blog.csdn.net/harryweasley/article/details/43056631

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!