如何将一个片段添加到以编程方式生成的布局?

我有以下代码工作生成片段,但仅当我将它们添加到存在于我的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(); 

现在,如果我想要将该片段添加到XML文件中尚不存在的线性布局,例如

 LinearLayout rowLayout = new LinearLayout(); 

第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++; 

在某些时候,我想你会将你编程创build的LinearLayout添加到你在.xml中定义的某个根布局。 这只是我的一个build议,可能是众多解决scheme中的一个,但是它可以工作:只需为编程创build的布局设置一个ID ,然后将其添加到您在.xml中定义的根布局,然后使用set ID添加片段。

它可能是这样的:

 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(); 

只需select您想要的ID的整数值

 rowLayout.setId(12345); 

如果您不只是使用上述代码行,则可能很明智地找出创build唯一ID的方法 ,以避免重复

更新:

这里是完整的代码应该怎么做:(这个代码被testing和工作)我将两个片段添加到一个LinearLayout与水平方向,导致碎片被排列在一起。 请注意, 我使用了固定的高度和宽度 200dp,这样一个片段不会像使用 “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> 

这是上面代码的结果:(两个片段彼此相邻) 结果