首页 > 代码库 > Fragment not attached to Activity
Fragment not attached to Activity
当我点击返回按钮,返回桌面的时候,就会报错,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
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。