使用Android新片段更新片段

时间:2011-06-04 23:56:57

标签: android android-fragments

我有

的布局
    <?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:orientation="vertical" 
    android:layout_width="fill_parent" android:layout_height="wrap_content" >
    <LinearLayout android:id="@+id/linearLayout1" android:layout_height="wrap_content" android:orientation="horizontal" android:layout_width="wrap_content">
        <LinearLayout android:id="@+id/linearLayout13" android:layout_height="wrap_content" android:paddingRight="70dp" android:orientation="vertical" android:paddingLeft="70dp" android:layout_width="wrap_content">
            <ImageView android:id="@+id/baby_icon" android:layout_height="wrap_content" android:src="@drawable/baby" android:clickable="true" android:layout_width="wrap_content"></ImageView>
        </LinearLayout>
    </LinearLayout>
    <fragment
        android:name="com.nicu.health.FragAFragment"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:id="@+id/yellow_cardlist_fragment"
        android:layout_weight="1"
        >
    </fragment>
</LinearLayout>

在启动时,它确实显示了正确的片段(FragAFragment)。现在点击按钮baby_icon我尝试删除当前片段并添加一个新的(FragBFragment),它具有完全不同的布局。

虽然我看到调用了onCreateView方法并且确实返回了非空视图,但是新片段屏幕上的UI没有得到更新。我使用下面的代码来更新片段。

                        Fragment baby = FragBFragment.newInstance(1);
                    FragmentTransaction ft = getFragmentManager().beginTransaction();
//                  ft.remove(getFragmentManager().findFragmentById(R.id.yellow_cardlist_fragment));
//                  ft.add(R.id.yellow_cardlist_fragment, baby);
                    ft.replace(R.id.yellow_cardlist_fragment, baby);
                    ft.addToBackStack(null);
                    Log.i(TAG, "Code for commit = "+ft.commit());

我曾尝试过删除,替换和添加的所有组合来获取片段的东西,但是徒劳无功!

我还尝试使用代码

<fragment
    android:name="com.nicu.health.FragBFragment"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:id="@+id/yellow_cardlist_fragment"
    android:layout_weight="1"
    >

这确实可以在启动时显示第二个片段!!!!

帮助将被重新安置。

谢谢,

2 个答案:

答案 0 :(得分:7)

回答我的问题是

Android: can't replace one fragment with another

我在主要活动的开始时添加了动态片段,然后onclick我做了一个ft.replace来替换旧片段!

答案 1 :(得分:0)

好的,我的第一个猜测:你忘了说ft.commit();

我的第二个猜测:

假设你有活动AB控制片段A和片段B。

您还有3种布局。 Layout_ActivityAB,Layout_FragA,Layout_FragB。

因此在Activity AB中调用setContentView(R.layout.Layout_ActivityAB)。这将是你告诉android将片段放在屏幕中的位置的布局。

内部片段A或片段B:

@Override
    //onCreateView is called when an instance of this class is first created.
    public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
        View rootView = inflater.inflate(R.layout.Layout_FragA, container, false);  return rootView;
    }

在Fragment中调用R.layout.Layout_FragA。 Layout_FragA是片段的实际内容。