我的应用程序只有两个按钮和一个加载 ListFragment 的空间。当按钮被定义为位于布局的顶部时,应用程序会根据需要运行:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >
<LinearLayout
android:layout_width="match_parent"
android:layout_weight="1"
android:layout_height="0px"
android:orientation="horizontal" >
<Button
android:id="@+id/displayfragment1"
android:layout_height="match_parent"
android:layout_width="wrap_content"
android:text="@string/button_fragment1" />
<Button
android:id="@+id/displayfragment2"
android:layout_height="match_parent"
android:layout_width="wrap_content"
android:text="@string/button_fragment2" />
</LinearLayout>
<LinearLayout
android:id="@+id/myfragment"
android:layout_width="match_parent"
android:layout_weight="5"
android:layout_height="0px" />
</LinearLayout>
但是,当我将片段布局移动到按钮上方时,如下所示,应用程序在启动时崩溃。
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >
<LinearLayout
android:id="@+id/myfragment"
android:layout_width="match_parent"
android:layout_weight="5"
android:layout_height="0px" />
<LinearLayout
android:layout_width="match_parent"
android:layout_weight="1"
android:layout_height="0px"
android:orientation="horizontal" >
<Button
android:id="@+id/displayfragment1"
android:layout_height="match_parent"
android:layout_width="wrap_content"
android:text="@string/button_fragment1" />
<Button
android:id="@+id/displayfragment2"
android:layout_height="match_parent"
android:layout_width="wrap_content"
android:text="@string/button_fragment2" />
</LinearLayout>
</LinearLayout>
这是我为导致此崩溃所做的唯一更改,因此我认为这一定是问题所在?