1

正在尝试此处提到的抽屉布局示例

在尝试了这个之后,我在主布局中添加了一些元素,比如一个按钮。这就是我所做的:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:paddingBottom="@dimen/activity_vertical_margin"
    android:paddingLeft="@dimen/activity_horizontal_margin"
    android:paddingRight="@dimen/activity_horizontal_margin"
    android:paddingTop="@dimen/activity_vertical_margin" >

    <Button
        android:id="@+id/button1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_centerHorizontal="true"
        android:layout_centerVertical="true"
        android:onClick="openTestButtonActivity"
        android:text="@string/testing" />

     <android.support.v4.widget.DrawerLayout
         xmlns:android="http://schemas.android.com/apk/res/android"
            .
            .
            .
     </android.support.v4.widget.DrawerLayout>

</RelativeLayout>

现在,抽屉工作正常,但我无法激活我的按钮。我做错了布局的顺序吗?

4

1 回答 1

2

是的,布局顺序是错误的。在 relativeLayout 中,视图的排序就像在代码中添加一样。所以如果你先添加按钮,然后添加drawerLayout,drawerLayout会覆盖按钮。所以你应该先添加 DrawerLayout 然后再添加 Button。

于 2013-07-13T20:07:19.347 回答