我有一个没有子视图的线性布局
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="horizontal" >
</LinearLayout>
我希望根据需要动态添加一个片段或两个片段。 我知道添加一个片段,但我怎么能动态地向它添加两个片段。 我有两个片段,在每个片段中我写了以下oncreateview
public View onCreateView(LayoutInflater inflater, ViewGroup container,
Bundle savedInstanceState) {
// TODO Auto-generated method stub
//return super.onCreateView(inflater, container, savedInstanceState);
View v=inflater.inflate(R.layout.frag1, container, false);
v.setLayoutParams(new LayoutParams(LayoutParams.WRAP_CONTENT,LayoutParams.WRAP_CONTENT));
return v;
}
我正在尝试使用以下代码添加,但第二个片段将超过第一个。
FragmentTransaction ft=fm.beginTransaction();
frag1 f=new frag1();
frag2 ff=new frag2();
ft.add(android.R.id.content, f);
ft.add(android.R.id.content, ff);
ft.commit();
请更新如何完成此操作。 感谢
答案 0 :(得分:0)
这应该做的伎俩:
FragmentTransaction ft=fm.beginTransaction();
frag1 f=new frag1();
frag2 ff=new frag2();
LayoutParams(LayoutParams.WRAP_CONTENT,LayoutParams.WRAP_CONTENT));
ft.add(android.R.id.content, f).commit();
FragmentTransaction ft=fm.beginTransaction(); // this line might be unnescessary
ft.add(android.R.id.content, ff).commit();