android:clickable不起作用

时间:2015-04-21 21:58:59

标签: android

我有一个RelativeLayout并希望禁用下层的任何触摸事件,但是,将android:clickable="true"放在上一层并不能解决问题。你能看一下:

<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" >

        <RelativeLayout
            android:layout_width="match_parent"
            android:layout_height="match_parent">
                <Button
                     android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:text="lower layer button" />
        </RelativeLayout>

        <RelativeLayout
            android:layout_width="wrap_content"
            android:layout_height="wrap_content" 
            android:clickable="true">
             <Button
                 android:layout_width="wrap_content"
                 android:layout_height="wrap_content"
                 android:text="upper layer button"/>
        </RelativeLayout>

</RelativeLayout>

我仍然可以点击两个按钮。这段代码可能有什么问题?

编辑以使问题更清晰。

2 个答案:

答案 0 :(得分:1)

默认情况下,按钮是可点击的。如果您希望按钮不可单击,则必须将该属性显式设置为false:

<!-- this will be clickable -->
<Button
    android:id="@+id/btn1"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="test test test"
    android:clickable="true" />

<!-- this will not be clickable -->
<Button
    android:id="@+id/btn2"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:clickable="false" />

答案 1 :(得分:0)

过了一段时间我找到了答案:

我的第二层没有拦截所有触摸事件,因为它比第一层小。所以即使android:clickable =&#34; true&#34;需要这还不够。底层不应大于上层。使第二个RelativeLayout大小可继承修复了问题:

<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" >

        <RelativeLayout
            android:layout_width="match_parent"
            android:layout_height="match_parent">
                <Button
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:text="lower layer button" />
        </RelativeLayout>

        <RelativeLayout
            android:layout_width="match_parent"
            android:layout_height="match_parent" 
            android:clickable="true">
             <Button
                 android:layout_width="wrap_content"
                 android:layout_height="wrap_content"
                 android:text="upper layer button"/>
        </RelativeLayout>

</RelativeLayout>