android TextView selector點擊樣式改變)

來源:互聯網
上載者:User

標籤:

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點擊樣式改變)

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.