tutorial studio llamar from fragments example desde con activity abrir android android-fragments android-linearlayout

android - studio - llamar un fragment desde un activity



¿Cómo agregar un fragmento a un diseño generado por programación? (1)

Tengo el siguiente código funcionando que genera fragmentos, pero solo si los estoy agregando a un diseño lineal que existe en mi archivo XML.

LinearLayout fragmentsLayout = (LinearLayout) findViewById(R.id.foodItemActvity_linearLayout_fragments); FragmentManager fragMan = getFragmentManager(); FragmentTransaction fragTransaction = fragMan.beginTransaction(); Fragment myFrag= new ImageFragment(); fragTransaction.add(R.id.foodItemActvity_linearLayout_fragments, myFrag , "fragment" + fragCount); fragTransaction.commit();

Ahora, ¿qué sucede si quiero agregar ese fragmento a un diseño lineal que no existe en el archivo XML, como

LinearLayout rowLayout = new LinearLayout();

Parte 2:

Fragment frag1 = generateAppropriateFragment(type1); Fragment frag2 = generateAppropriateFragment(type2); LinearLayout fragmentsLayout = (LinearLayout) findViewById(R.id.foodItemActvity_linearLayout_fragments); LinearLayout rowLayout = new LinearLayout(this); rowLayout.setId(12345); // add counter to end fragmentsLayout.addView(rowLayout); getFragmentManager().beginTransaction().add(rowLayout.getId(), frag1, "fragment_grandchild" + fragCount).commit(); fragCount++; getFragmentManager().beginTransaction().add(rowLayout.getId(), frag2, "fragment_grandchild" + fragCount).commit(); fragCount++;


En algún momento, supongo que agregará su LinearLayout creado programáticamente a algún diseño de raíz que haya definido en .xml. Esta es solo una sugerencia mía y probablemente una de muchas soluciones, pero funciona: simplemente establezca una ID para el diseño creado programáticamente y añádalo al diseño de la raíz que definió en .xml, y luego use la ID del conjunto para agregar el Fragmento.

Podría verse así:

LinearLayout rowLayout = new LinearLayout(); rowLayout.setId(whateveryouwantasid); // add rowLayout to the root layout somewhere here FragmentManager fragMan = getFragmentManager(); FragmentTransaction fragTransaction = fragMan.beginTransaction(); Fragment myFrag = new ImageFragment(); fragTransaction.add(rowLayout.getId(), myFrag , "fragment" + fragCount); fragTransaction.commit();

Simplemente elija el valor entero que desee para la ID:

rowLayout.setId(12345);

Si está utilizando la línea de código anterior no solo una vez, probablemente sería inteligente encontrar la manera de crear identificaciones únicas , para evitar duplicados .

ACTUALIZAR:

Aquí está el código completo de cómo debe hacerse: (este código está probado y funciona). Estoy agregando dos fragmentos a LinearLayout con orientación horizontal, lo que da como resultado que los Fragmentos se alineen uno al lado del otro. Tenga en cuenta también que utilicé una altura y un ancho fijos de 200 pb, por lo que un Fragmento no utiliza la pantalla completa como lo haría con "match_parent".

MainActivity.java:

public class MainActivity extends Activity { @SuppressLint("NewApi") @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); LinearLayout fragContainer = (LinearLayout) findViewById(R.id.llFragmentContainer); LinearLayout ll = new LinearLayout(this); ll.setOrientation(LinearLayout.HORIZONTAL); ll.setId(12345); getFragmentManager().beginTransaction().add(ll.getId(), TestFragment.newInstance("I am frag 1"), "someTag1").commit(); getFragmentManager().beginTransaction().add(ll.getId(), TestFragment.newInstance("I am frag 2"), "someTag2").commit(); fragContainer.addView(ll); } }

TestFragment.java:

public class TestFragment extends Fragment { public static TestFragment newInstance(String text) { TestFragment f = new TestFragment(); Bundle b = new Bundle(); b.putString("text", text); f.setArguments(b); return f; } @Override public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) { View v = inflater.inflate(R.layout.fragment, container, false); ((TextView) v.findViewById(R.id.tvFragText)).setText(getArguments().getString("text")); return v; } }

activity_main.xml:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:id="@+id/rlMain" android:layout_width="match_parent" android:layout_height="match_parent" android:padding="5dp" tools:context=".MainActivity" > <TextView android:id="@+id/textView1" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="@string/hello_world" /> <LinearLayout android:id="@+id/llFragmentContainer" android:layout_width="match_parent" android:layout_height="match_parent" android:layout_alignLeft="@+id/textView1" android:layout_below="@+id/textView1" android:layout_marginTop="19dp" android:orientation="vertical" > </LinearLayout> </RelativeLayout>

fragment.xml:

<?xml version="1.0" encoding="utf-8"?> <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="200dp" android:layout_height="200dp" > <TextView android:id="@+id/tvFragText" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_centerHorizontal="true" android:layout_centerVertical="true" android:text="" /> </RelativeLayout>

Y este es el resultado del código anterior: (los dos Fragmentos están alineados uno al lado del otro)