android – 在PreferenceFragment中的上下文

前端之家收集整理的这篇文章主要介绍了android – 在PreferenceFragment中的上下文前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
取自 http://developer.android.com/guide/topics/ui/settings.html

Note: A PreferenceFragment doesn’t have a its own Context object. If
you need a Context object,you can call getActivity(). However,be
careful to call getActivity() only when the fragment is attached to an
activity. When the fragment is not yet attached,or was detached
during the end of its lifecycle,getActivity() will return null.

如果我从PreferenceFragment的OnCreate()方法调用getActivity(),那么我可以放心,片段是附加到它的活动的 – 还有其他方法你应该得到这个实例中的Context?

我需要上下文的原因是我正在尝试使用PreferenceFragment中的Toast通知

解决方法

如果要确保可用的上下文,则需要等到片段已附加到活动.这个回调是 onAttach(Activity)方法.

根据片段的生命周期状态,getActivity()方法也可以返回null.

原文链接:https://www.f2er.com/android/311911.html

猜你在找的Android相关文章