標籤:
1.selector 從單詞的意思來說:選取器,就是對你的目標的控制。selector主要是用在ListView的item單擊樣式和TextView和Button的點擊樣式。
2.主要屬性介紹:
android:state_selected選中
android:state_focused獲得焦點
android:state_pressed點擊
android:state_enabled設定是否響應事件,指所有事件
3.下面通過例子來說一下selector對TextView設定:
1).在res下建立一個drawable檔案夾用於裝textselector.xml ,對點擊樣式的定義放在這裡面
2). 將textselector.xml資源載入到TextView上
textselector.xml
<?xml version="1.0" encoding="utf-8"?><selector xmlns:android="http://schemas.android.com/apk/res/android"> <item android:color="#45c01a" android:state_pressed="true"/> <item android:color="#9a9a9a"/></selector>
activity_main.xml
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="fill_parent" android:layout_height="fill_parent" > <TextView android:id="@+id/textview" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_centerHorizontal="true" android:paddingBottom="4dp" android:text="首頁" android:textColor="@drawable/textselector" android:textSize="20sp" > </TextView></LinearLayout>
但是運行程式之後點擊textview是不會看到textview顏色改變的,這是因為還沒有給TextView添加按鈕監聽事件,就算事件不取執行什麼功能都必須去設定。
TextView textView = (TextView) findViewById(R.id.textview); textView.setOnClickListener(null);
android TextView selector點擊樣式改變)