我有一小段代码,我开始使用相对布局,文本视图不再可点击。我在下面发布 XML。
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@drawable/fav_list_selector"
android:orientation="horizontal"
android:padding="5dip">
<ImageButton
android:id="@+id/pinImage"
android:layout_alignParentLeft="true"
android:src="@drawable/ic_9_av_make_available_offline"
android:layout_width="wrap_content"
android:layout_height="match_parent"/>
<TextView
android:id="@+id/favBusItem"
android:layout_toRightOf="@+id/pinImage"
android:layout_toLeftOf="@+id/transpoImage"
android:layout_centerVertical="true"
android:textSize="12sp"
android:layout_height="match_parent"
android:layout_width="wrap_content"
android:clickable = "true"
android:textColor="#000000">
</TextView>
<ImageButton
android:id="@+id/transpoImage"
android:layout_alignParentRight="true"
android:layout_alignTop="@+id/pinImage"
android:src="@drawable/ic_9_av_make_available_offline"
android:layout_width="wrap_content"
android:layout_height="match_parent"/>
</RelativeLayout>
我怀疑由于 ImageButton,textview 是不可点击的。