Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a fragment i am trying to add into a view.

FragmentManager fragMgr=getSupportFragmentManager();
    feed_parser_activity content=
        (feed_parser_activity)fragMgr.findFragmentById(R.id.feedContentContainer);
    FragmentTransaction xaction=fragMgr.beginTransaction();

    if (content==null || content.isRemoving()) {
        content=new feed_parser_activity(item.getLink().toString());

        xaction
            .add(R.id.feedContentContainer, content)
            .setTransition(FragmentTransaction.TRANSIT_FRAGMENT_OPEN)
            .addToBackStack(null)
            .commit();
        Log.e("Abstract", "DONE");
    }

When this code is executed i get the following error in debug..

09-21 19:45:19.040: ERROR/AndroidRuntime(2835): java.lang.IllegalArgumentException: No view found for id 0x7f080011 for fragment feed_parser_activity{41882f50 #2 id=0x7f080011}

feed_parser_activity is a Fragment that is set to Fragment layout in xml.

I am using a FragmentActivity to host the Fragment Layout holding the feed_parser_layout.

Am i coding this correctly above?

share|improve this question
Can you include the XML? – jsmith Nov 7 '11 at 15:22

8 Answers

up vote 54 down vote accepted

I was having this problem too, until I realized that I had specified the wrong layout in setContentView() of the onCreate() method of the FragmentActivity.

The id passed into FragmentTransaction.add(), in your case R.id.feedContentContainer, must be a child of the layout specified in setContentView().

You didn't show us your onCreate() method, so perhaps this is the same problem.

share|improve this answer
What do you mean by child of layout specified in setContentView? How to make it child? – NinjaCoder Feb 7 at 15:51
1  
A view is a child of another view if is is declared inside of the parent view in the XML. ie. a TextView inside of a RelativeLayout is a child of the RelativeLayout. – howettl Feb 12 at 19:06

I had this problem (when building my UI in code) and it was caused by my ViewPager (that showed Fragments) not having an ID set, so I simply used pager.setID(id) and then it worked.

This page helped me figure that out.

share|improve this answer
Thank you, that just fixed it for me! – Trevor Oct 6 '12 at 22:37

I know this has already been answered for one scenario, but my problem was slightly different and I thought I'd share in case anybody else is in my shoes.

I was making a transaction within onCreate(), but at this point the view tree has not been inflated so you get this same error. Putting the transaction code in onResume() made everything run fine.

So just make sure your transaction code runs after the view tree has been inflated!

share|improve this answer
Hmm... in my case it made no difference whether such code was in onCreate or onResume – Igor Ganapolsky May 10 at 20:54

This exception can also happen if the layout ID which you are passing to FragmentTransaction.replace(int ID, fragment) exists in other layouts that are being inflated. Make sure the layout ID is unique and it should work.

share|improve this answer

I had this same issue, let me post my code so that you can all see it, and not do the same thing that I did.

@Override
protected void onResume()
{
    super.onResume();

    fragManager = getSupportFragmentManager();

    Fragment answerPad=getDefaultAnswerPad();
    setAnswerPad(answerPad);
    setContentView(R.layout.abstract_test_view);
}
protected void setAnswerPad(AbstractAnswerFragment pad)
{
    fragManager.beginTransaction()
        .add(R.id.AnswerArea, pad, "AnswerArea")
        .commit();
    fragManager.executePendingTransactions();
}

Note that I was setting up fragments before I setContentView. Ooops.

share|improve this answer
1  
Thank you! I was doing the same thing, so I put my setContentView inside my onBuildHeaders – Randy Dec 25 '12 at 14:21

An answer I read on another thread similar to this one that worked for me when I had this problem involved the layout xml.

Your logcat says "No view found for id 0x7f080011".

Open up the gen->package->R.java->id and then look for id 0x7f080011.

When I had this problem, this id belonged to a FrameLayout in my activity_main.xml file.

The frame layout did not have an id. there was no statement android:id = "blablabla".

Make sure that all of your components in all of your layouts have ids, particularly the component cited in the logcat.

share|improve this answer

In my case I was trying to show a DialogFragment containing a pager and this exception was thrown when the FragmentPagerAdapter attempted to add the Fragments to the pager. Based on howettl answer I guess that it was due to the Pager parent was not the view set in setContentView() in my FragmentActivity.

The only change I did to solve the problem was to create the FragmentPagerAdapter passing in a FragmentMager obtained by calling getChildFragmentManager(), not the one obtained by calling getFragmentManager() as I normally do.

public class PagerDialog extends DialogFragment{

@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {

    View rootView = inflater.inflate(R.layout.pager_dialog, container, false);

    MyPagerAdapter pagerAdapter = new MyPagerAdapter(getChildFragmentManager());
    ViewPager pager = (ViewPager) rootView.findViewById(R.id.pager);
    pagerAdapter.setAdapter(pagerAdapter);

    return rootView;
}

}

share|improve this answer

Inside your fragment use this:

int id = this.getId();
share|improve this answer
How does this help? – Jahufar Mar 19 at 6:29

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.