Java.lang.IllegalStateException:Fragment bb{42261900} not attached to Activity

Source: Internet
Author: User
Tags gettext

A. Handling exceptions Java.lang.IllegalStateException:Fragment bb{42261900} not attached to Activity
Processing: Due to calls in the thread fragment the following methods will appear fragment has not been attached to the activity,
So when calling these methods, add isadded () to judge
Fragment source
--------------------1-----------------------------
Public final Resources Getresources ()
{
if (this.mactivity = = null) {
throw new IllegalStateException ("Fragment" + this + "not attached to Activity");
}
return this.mActivity.getResources ();
}

Public final charsequence getText (int resId)
{
Return Getresources (). GetText (ResId);
}

Public final String getString (int resId)
{
Return Getresources (). getString (ResId);
}

Public final String getString (int resId, object[] formatargs)
{
Return Getresources (). getString (ResId, Formatargs);
}
-----------------2--------------------
Public Loadermanager Getloadermanager ()
{
if (This.mloadermanager! = null) {
return this.mloadermanager;
}
if (this.mactivity = = null) {
throw new IllegalStateException ("Fragment" + this + "not attached to Activity");
}
This.mcheckedforloadermanager = true;
This.mloadermanager = This.mActivity.getLoaderManager (this.mwho, this.mloadersstarted, true);
return this.mloadermanager;
}
-----------------3--------------------
public void StartActivity (Intent Intent)
{
if (this.mactivity = = null) {
throw new IllegalStateException ("Fragment" + this + "not attached to Activity");
}
This.mActivity.startActivityFromFragment (This, intent,-1);
}
-----------------4--------------------
public void Startactivityforresult (Intent Intent, int requestcode)
{
if (this.mactivity = = null) {
throw new IllegalStateException ("Fragment" + this + "not attached to Activity");
}
This.mActivity.startActivityFromFragment (this, intent, requestcode);
}

Java.lang.IllegalStateException:Fragment bb{42261900} not attached to Activity

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.