Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Trying to add a fragment to my fragment container FrameLayout

I have created an xml file called editor.xml which contains a FrameLayout. In my main activity I am trying to add my custom fragment to my FrameLayout.

The error I receive when trying to add my fragment is:

The method add(int, Fragment) in the type FragmentTransaction is not applicable for the arguments (int, editorFrag)

However my editorFrag extends Fragment so I am confused on why this is happening. Below is my code for the files I have mentioned. Any help is appreciated.

Editor.xml

<?xml version="1.0" encoding="utf-8"?> <FrameLayout xmlns:android="http://schemas.android.com/apk/res/android" android:id="@+id/fragment_container" android:layout_width="match_parent" android:layout_height="match_parent" /> 

editorFrag.java

public class editorFrag extends Fragment {     @Override     public View onCreateView(LayoutInflater inflater, ViewGroup container,          Bundle savedInstanceState)      {          // Inflate the layout for this fragment         return inflater.inflate(R.layout.newlevel, container, false);     } } 

MainActivity.java

public class editorActivity extends FragmentActivity {     @Override     public void onCreate(Bundle savedInstanceState)      {         super.onCreate(savedInstanceState);          setContentView(R.layout.editor);          // Check that the activity is using the layout version with the fragment_container FrameLayout         if(findViewById(R.id.fragment_container) != null)         {             // if we are being restored from a previous state, then we dont need to do anything and should             // return or else we could end up with overlapping fragments.             if(savedInstanceState != null)                 return;              // Create an instance of editorFrag             editorFrag firstFrag = new editorFrag();              // add fragment to the fragment container layout             getSupportFragmentManager().beginTransaction().add(R.id.fragment_container, firstFrag);         }     }  } 

Answered:

Luksprog answered this problem for me below by telling me to check my imports. Eclipse chose to import the SDK version of Fragment instead of the support version that I needed. Thank you for the help.

like image 802
Pedrom Avatar asked Aug 24 '12 17:08

Pedrom


People also ask

How do I add a fragment to FrameLayout?

and then you can use the FragmentManager to create a FragmentTransaction which allows us to add fragments to the FrameLayout at runtime: // Begin the transaction FragmentTransaction ft = getSupportFragmentManager(). beginTransaction(); // Replace the contents of the container with the new fragment ft. replace(R.

What is FrameLayout in fragment?

FrameLayout is designed to block out an area on the screen to display a single item. Generally, FrameLayout should be used to hold a single child view, because it can be difficult to organize child views in a way that's scalable to different screen sizes without the children overlapping each other.

How do I start a new fragment from a fragment?

Use replace() to replace an existing fragment in a container with an instance of a new fragment class that you provide. Calling replace() is equivalent to calling remove() with a fragment in a container and adding a new fragment to that same container.


1 Answers

You forgot to commit() your transaction.

like image 163
Marcin Orlowski Avatar answered Nov 11 '22 21:11

Marcin Orlowski