I'm using fragments and when I select something on my left fragment, I want a right fragment to be created by my main activity.

So I did this to add my Fragment on a FrameLayout :

//add a fragment
FluxDetailFragment myFragment = new FluxDetailFragment();
fragmentTransaction.add(R.id.frameLayout3, myFragment);
fragmentTransaction.commit();

But I get this error :

02-02 15:34:03.104: E/AndroidRuntime(14794): java.lang.IllegalStateException: The specified child already has a parent. You must call removeView() on the child's parent first.

Do I have to remove my FrameLayout view before? Or another view? How to do so?

link|improve this question

Can you put FluxDetailFragment's onCreate and onCreateView here? – biovamp Feb 2 at 15:26
Mistake from myself, I used inflate from root instead of "null" – Thordax Feb 6 at 17:42
feedback

1 Answer

up vote 0 down vote accepted

To solve my problem, I had this :

View result = inflater.inflate(R.layout.view2);

Instead of that, I did this :

View result = inflater.inflate(R.layout.view2, null);

attachToRoot must be set to null to work.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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