如何做這種事件如何做與android market UI相同的後退選擇器?
當我按下首選項按鈕我只需要改變箭頭的背景顏色。
我所做的是,當我把 android:background="@null"
爲TextView的工作不顯示與藍色背景的整體視圖。
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_centerVertical="true"
android:background="@drawable/btn_selector"
android:clickable="true" >
<ImageView
android:id="@+id/back_arrow"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:src="@drawable/ic_ab_back_holo_dark" />
<TextView
android:id="@+id/settings_title"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_marginLeft="10dp"
android:background="@null"
android:layout_toRightOf="@id/back_arrow"
android:gravity="center_vertical"
android:text="@string/settings_title"
android:textColor="@color/white"
android:textSize="22sp" />
</LinearLayout>