我在类似布局的操作栏中有一个带有 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>