天天看點

Android美工坊:Selector選擇器的使用

Android selector選擇器可以讓你切換自定義的背景風格,比如button、ListView、或者布局點選時候的背景切換等,都需要用到它

  背景可以是自定義到顔色,或者圖檔資源

  首先需要在你的res目錄下建立drawable檔案夾,然後在裡面建立一個selector檔案,如myselector.xml

  注:不知為什麼,selector裡面有關focus的東西在真機上沒什麼效果,反而會影響使用,比如android:state_focus="true",加上它就沒有效果,去掉它就可以正常使用了

  預設情況下直接用下面的布局即可實作點選後即可切換背景,其實隻需要兩個item标簽即可,當然,item标簽内部可以用shape标簽自定義不同的風格

  例子1:button點選效果

<?xml version="1.0" encoding="utf-8"?>

    <item 

        android:state_pressed="true"

        android:drawable="@drawable/button_pressed"

        ></item>

        android:drawable="@drawable/button_normal"

</selector>

res/layout/main.xml

    android:layout_width="fill_parent"

    android:layout_height="fill_parent"

    android:orientation="vertical" >

    <Button

        android:id="@+id/test"

        android:layout_width="fill_parent"

        android:layout_height="wrap_content"

        android:background="@drawable/myselectr"

        android:text="Go Home"

        />

</LinearLayout>

  運作效果:

  

  這是正常情況

  這是點選後的效果

  當然,針對button的selector還有很多其他的配置,但是對于一般程式來說上面的配置就夠了

  例子2:TextView點選效果

  這個例子是網上找的,示範的是一個用TextView來定義的一個Button,實作類似TabWidget風格的頁籤。

  自定義按鈕,這裡沒有通過Button類或者子類去做派生,而是通過TextView派生出來的。

  在這裡三個按鈕是三個TextView派生類執行個體,中間的白線,是1px寬的白色矩形,這樣就可以做出類似上面的效果。先看圖

  點選後

  /res/drawable/background_color.xml 用shape标簽自定義一個漸變背景

    <gradient 

        android:startColor="#FFFFFFFF"

        android:endColor="#FFFFFFFF"

        android:angle="270.0"

        android:centerY="0.3"

        android:centerColor="#FFBDBDBD"

</shape>

/res/drawable/button_color.xml

        android:startColor="#FF7F7F7F"

        android:endColor="#FF000000"

    android:constantSize="true">

    <!-- 獲得焦點時的背景圖檔 -->

    <item android:state_focused="true">

        <shape>

            <gradient 

                android:startColor="#FFE5CF33"

                android:endColor="#FFF1E7A2"

                android:angle="90.0"

                />

        </shape>

    </item>

    <!-- 設定相應所有事件 -->

    <item android:state_enabled="true" android:state_pressed="false">

                android:startColor="#FF1B1B1B"

                android:endColor="#FF969696"

    <!-- 按鈕點選時的背景 -->

    <item android:state_enabled="true" android:state_pressed="true">

                android:startColor="#FF000000"

                android:endColor="#FF474747"

    <item android:state_enabled="false" android:state_pressed="true">

    <!-- 預設情況下的背景 -->

    <item>

res/drawable/button_selector.xml

res/layout/main.xml,這個是主布局,由自定義的Button和1px的白色矩形組成

    android:background="@drawable/background_color"

    <LinearLayout 

        android:layout_height="10dip"

        android:layout_height="40dip"

        >

        <com.loulijun.demo02.TextButton

            android:layout_width="fill_parent"

            android:layout_height="fill_parent"

            android:layout_weight="1"

            android:text="飲食"

            android:gravity="center"

            android:background="@drawable/button_selector"

            android:focusable="true"

            android:clickable="true"

            />

        <View android:layout_width="2px" android:layout_height="fill_parent"

            android:background="#FFFFFFFF"/>

            android:text="旅行"

            android:text="體育"

    </LinearLayout>

  繼承自TextView的自定義Button

package com.loulijun.demo02;

import android.content.Context;

import android.util.AttributeSet;

import android.view.MotionEvent;

import android.view.View;

import android.widget.TextView;

import android.widget.Toast;

public class TextButton extends TextView {

    public TextButton(Context context)

    {

        super(context);

    }

    public TextButton(Context context, AttributeSet attrs, int defStyle)

        super(context,attrs,defStyle);

    public TextButton(final Context context, AttributeSet attrs)

        this(context,attrs,0);

        this.setOnTouchListener(new OnTouchListener()

        {

            @Override

            public boolean onTouch(View v, MotionEvent event) {

                if(event.getAction()==MotionEvent.ACTION_CANCEL

                        ||event.getAction()==MotionEvent.ACTION_UP

                        ||event.getAction()==MotionEvent.ACTION_OUTSIDE)

                {

                    Toast.makeText(context, "hello", Toast.LENGTH_SHORT).show();

                }

                return false;

            }

        });

}

  主程式

import android.app.Activity;

import android.os.Bundle;

public class Demo02Activity extends Activity {

    /** Called when the activity is first created. */

    @Override

    public void onCreate(Bundle savedInstanceState) {

        super.onCreate(savedInstanceState);

        setContentView(R.layout.main);

本文轉自 wws5201985 51CTO部落格,原文連結:http://blog.51cto.com/wws5201985/812711,如需轉載請自行聯系原作者

繼續閱讀