我试图让3个不同的Fragment
在一个Activity
处垂直移位。
我想:
这就是我的活动布局:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:baselineAligned="false"
android:orientation="vertical" >
<fragment
android:id="@+id/messageFragment"
android:name="apps.android.expressa.expressa.Fragments.MessageFragment"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_weight="1"
tools:layout="@layout/message_fragment_layout" />
<fragment
android:id="@+id/listsFragment"
android:name="apps.android.expressa.expressa.Fragments.ListsFragment"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_weight="2"
tools:layout="@layout/lists_fragment_layout" />
<fragment
android:id="@+id/bottomBarFragment"
android:name="apps.android.expressa.expressa.Fragments.BottomBarFragment"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_weight="3"
tools:layout="@layout/bottom_bar_layout" />
</LinearLayout>
现在的问题是,只有第一个和第二个片段显示,而第三个只看到一个顶部。作为一个注释,我现在是Android 的新手。
答案 0 :(得分:3)
希望这有帮助
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:baselineAligned="false"
android:orientation="vertical"
android:weightSum="6" >
<fragment
android:id="@+id/messageFragment"
android:name="apps.android.expressa.expressa.Fragments.MessageFragment"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1"
tools:layout="@layout/message_fragment_layout" />
<fragment
android:id="@+id/listsFragment"
android:name="apps.android.expressa.expressa.Fragments.ListsFragment"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="2"
tools:layout="@layout/lists_fragment_layout" />
<fragment
android:id="@+id/bottomBarFragment"
android:name="apps.android.expressa.expressa.Fragments.BottomBarFragment"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="3"
tools:layout="@layout/bottom_bar_layout" />
</LinearLayout>