0

我的应用程序只有两个按钮和一个加载 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>

这是我为导致此崩溃所做的唯一更改,因此我认为这一定是问题所在?

4

1 回答 1

2

R在更改涉及的内容(尤其是布局内容)之后,请务必记住清理您的项目(项目 - >清理)。有时 Eclipse 会“忘记”修改R以反映更改(或错误地修改它,这似乎是这里的问题)并且会出现奇怪的问题。

于 2013-01-06T21:22:44.870 回答