我有一个包含两个片段的 FragmentActivity。例如:fragment1 和 fragment2。现在 fragment1 有两个按钮。我需要在fragment1 中单击按钮转到fragment3。
FragmentActivity 有两个按钮和一个片段位置,我在单击按钮时替换两个片段。这是布局。
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/LinearLayout1"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".OnlineActionsActivity" >
<LinearLayout
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="1"
android:orientation="vertical" >
<Button
android:id="@+id/btn1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:onClick="onSelectFragment"
android:text="fr1" />
<Button
android:id="@+id/btn2"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:onClick="onSelectFragment"
android:text="fr2" />
</LinearLayout>
<LinearLayout
android:id="@+id/fragment_place"
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="3"
android:orientation="vertical" >
</LinearLayout>
现在我有点迷失了如何实现我的目标!因为fragment1和fragment2是一个fragment而不是一个fragmentactivity所以我没有getSupportFragmentManager()。
还有 fragment1 的布局会是什么样子!!如果有人可以帮助我,那就太好了。