ImageView错误地获得了按下状态

时间:2013-04-14 22:28:06

标签: android android-layout android-widget

我在一个动作栏中有一个带有2个图像视图的桌面小部件,比如布局,“问题”是无论在小部件的哪个位置按下(btnRefreshWidget除外),我的btnOpen视图都会获得按下状态。我无法弄清楚原因。我查看了我的布局,我找不到任何看起来的东西,这是我的布局xml。

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >

<RelativeLayout
    android:id="@+id/widgetItemWrapper"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:background="#99000000"
    android:clickable="false" >

     <ImageView
        android:id="@+id/btnOpen"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentLeft="true"
        android:layout_centerVertical="true"
        android:background="@drawable/background_widget_refresh"
        android:padding="8dp"
        android:src="@drawable/ic_refresh_dark" />

    <ImageView
        android:id="@+id/btnRefreshWidget"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentRight="true"
        android:layout_centerVertical="true"
        android:background="@drawable/background_widget_refresh"
        android:padding="8dp"
        android:src="@drawable/ic_refresh_dark" />
</RelativeLayout>

<ListView
    android:id="@+id/lstWidgetList"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:layout_marginTop="1dp"
    android:background="#40000000" >
</ListView>

<TextView
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/empty_view"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:layout_marginTop="1dp"
    android:background="#40000000"
    android:gravity="center"
    android:shadowColor="@android:color/black"
    android:shadowDx="1"
    android:shadowDy="1"
    android:shadowRadius="1"
    android:text="@string/widget_message_noshow"
    android:textColor="#FFFFFF"
    android:textSize="18sp" />
</LinearLayout>

0 个答案:

没有答案