9

我有一个没有子视图的线性布局

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

请更新如何做到这一点。谢谢

4

1 回答 1

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();
于 2013-09-21T20:29:30.237 回答