android Android UI(Switch)详解

目录:

1.应用场景与概述

2.常用属性

3.简单使用

4.更改默认Switch的样式

5.自定义Switch

1.应用场景与概述

Switch是在4.0以后推出的,所以要注意开发时的minsdk设置,google在API 21后也推出support v7 包下的SwitchCompa的Material Design

开关控件,对低版本的有了更好的的支持。其实switch的应用场景和ToggleButton类似,多应用于两种状态的切换。

2.常用属性

[plain]view plaincopy

android:typeface="normal":设置字体类型

android:track="":设置开关的轨迹图片

android:textOff="开":设置开关checked的文字

android:textOn="关":设置开关关闭时的文字

android:thumb="":设置开关的图片

android:switchMinWidth="":开关最小宽度

android:switchPadding="":设置开关 与文字的空白距离

android:switchTextAppearance="":设置文本的风格

android:checked="":设置初始选中状态

android:splitTrack="true":是否设置一个间隙,让滑块与底部图片分隔(API 21及以上)

android:showText="true":设置是否显示开关上的文字(API 21及以上)

3.简单使用

3.1)主布局

[html]view plaincopy


xmlns:tools="http://schemas.android.com/tools"

android:layout_width="match_parent"

android:layout_height="match_parent"

xmlns:app="http://schemas.android.com/apk/res-auto"

android:paddingBottom="@dimen/activity_vertical_margin"

android:paddingLeft="@dimen/activity_horizontal_margin"

android:paddingRight="@dimen/activity_horizontal_margin"

android:paddingTop="@dimen/activity_vertical_margin"

tools:context="com.example.aswitch.MainActivity">


android:typeface="normal":设置字体类型

android:track="":设置开关的轨迹

android:textOff="开":设置开关checked的文字

android:textOn="关":设置开关关闭时的文字

android:thumb="":设置开关的图片

android:switchMinWidth="":开关最小宽度

android:switchPadding="":设置开关 与文字的空白距离

android:switchTextAppearance="":设置文本的风格

android:checked="":设置初始选中状态

android:splitTrack="true":是否设置一个间隙,让滑块与底部图片分隔

-->

android:id="@+id/switch_tv"

android:layout_width="wrap_content"

android:layout_height="wrap_content"

android:text="switch:"/>

android:layout_marginTop="10dp"

android:layout_below="@+id/switch_tv"

android:id="@+id/switch1"

android:typeface="normal"

android:textOff="开"

android:textOn="关"

android:switchMinWidth="40dp"

android:switchPadding="10dp"

android:layout_width="wrap_content"

android:layout_height="wrap_content"/>

android:id="@+id/text"

android:layout_marginTop="10dp"

android:layout_below="@+id/switch1"

android:layout_width="wrap_content"

android:layout_height="wrap_content"

android:text="Hello World!"/>

android:layout_below="@+id/text"

android:id="@+id/switch_compat_tv"

android:layout_width="wrap_content"

android:layout_height="wrap_content"

android:text="switchCompat:"/>

android:layout_marginTop="10dp"

android:layout_below="@+id/switch_compat_tv"

android:id="@+id/switch_compat"

android:typeface="normal"

android:switchMinWidth="40dp"

android:switchPadding="10dp"

android:layout_width="wrap_content"

android:layout_height="wrap_content"/>

android:id="@+id/text1"

android:layout_marginTop="10dp"

android:layout_below="@+id/switch_compat"

android:layout_width="wrap_content"

android:layout_height="wrap_content"

android:text="Hello World!"/>

3.2)主布局java类

[java]view plaincopy

packagecom.example.aswitch;

importandroid.os.Bundle;

importandroid.support.v7.app.AppCompatActivity;

importandroid.support.v7.widget.SwitchCompat;

importandroid.widget.CompoundButton;

importandroid.widget.Switch;

importandroid.widget.TextView;

publicclassMainActivityextendsAppCompatActivityimplementsCompoundButton.OnCheckedChangeListener{

privateSwitch aSwitch;

privateSwitchCompat aSwitchCompat;

privateTextView text1,text2,switchText,switchCompatText;

@Override

protectedvoidonCreate(Bundle savedInstanceState) {

super.onCreate(savedInstanceState);

setContentView(R.layout.activity_main);

//实例化

aSwitch = (Switch) findViewById(R.id.switch1);

aSwitchCompat = (SwitchCompat) findViewById(R.id.switch_compat);

text1 = (TextView) findViewById(R.id.text);

text2 = (TextView) findViewById(R.id.text1);

//设置Switch事件监听

aSwitch.setOnCheckedChangeListener(this);

aSwitchCompat.setOnCheckedChangeListener(this);

}

/*

继承监听器的接口并实现onCheckedChanged方法

* */

@Override

publicvoidonCheckedChanged(CompoundButton buttonView,booleanisChecked) {

switch(buttonView.getId()){

caseR.id.switch1:

if(isChecked){

text1.setText("开");

}else{

text1.setText("关");

}

break;

caseR.id.switch_compat:

if(isChecked){

text2.setText("开");

}else{

text2.setText("关");

}

break;

default:

break;

}

}

}

3.3)截图效果

4.更改默认Switch的样式

4.1)在styles.xml中自定义style

[html]view plaincopy



@android:color/holo_green_dark


@color/colorAccent


@color/colorPrimaryDark

4.1)在布局文件中通过android:theme="@style/mySwitch"设置

[html]view plaincopy

android:layout_marginTop="10dp"

android:layout_below="@+id/switch_compat_tv"

android:id="@+id/switch_compat"

android:typeface="normal"

android:theme="@style/mySwitch"

android:switchMinWidth="40dp"

android:switchPadding="10dp"

android:layout_width="wrap_content"

android:layout_height="wrap_content"/>

5.自定义Switch

5.1)导入资源图片thumb.png ,thumb_on.png ,track_nomal.png ,track_on.png ,track_press.png

5.2)实现thumb_selector.xml

[html]view plaincopy




5.3)实现track_selector.xml

[html]view plaincopy





5.4)主布局actiity_second.xml

[html]view plaincopy


xmlns:tools="http://schemas.android.com/tools"

android:layout_width="match_parent"

android:layout_height="match_parent"

xmlns:app="http://schemas.android.com/apk/res-auto"

android:paddingBottom="@dimen/activity_vertical_margin"

android:paddingLeft="@dimen/activity_horizontal_margin"

android:paddingRight="@dimen/activity_horizontal_margin"

android:paddingTop="@dimen/activity_vertical_margin"

tools:context="com.example.aswitch.SecondActivity">

android:id="@+id/CustomSwitchCompat_tv"

android:layout_width="wrap_content"

android:layout_height="wrap_content"

android:text="CustomSwitchCompat:"/>

android:layout_marginTop="10dp"

android:layout_below="@+id/CustomSwitchCompat_tv"

android:id="@+id/CustomSwitchCompat"

android:layout_width="wrap_content"

android:minWidth="40dp"

android:minHeight="20dp"

android:layout_height="wrap_content"/>

android:id="@+id/custom_result"

android:layout_marginTop="10dp"

android:layout_below="@+id/CustomSwitchCompat"

android:layout_width="wrap_content"

android:layout_height="wrap_content"

android:text="Hello World!"/>

5.5)主布局java类SecondActivity.java

[java]view plaincopy

packagecom.example.aswitch;

importandroid.os.Bundle;

importandroid.support.v7.app.AppCompatActivity;

importandroid.support.v7.widget.SwitchCompat;

importandroid.widget.CompoundButton;

importandroid.widget.Switch;

importandroid.widget.TextView;

publicclassSecondActivityextendsAppCompatActivityimplementsCompoundButton.OnCheckedChangeListener{

privateSwitchCompat customSwitchCompat;

privateTextView custom_result,CustomSwitchCompat_tv;

@Override

protectedvoidonCreate(Bundle savedInstanceState) {

super.onCreate(savedInstanceState);

setContentView(R.layout.activity_second);

//实例化

customSwitchCompat = (SwitchCompat) findViewById(R.id.CustomSwitchCompat);

custom_result = (TextView) findViewById(R.id.custom_result);

//设置自定义的thumb和track

customSwitchCompat.setThumbResource(R.drawable.thumb_selector);

customSwitchCompat.setTrackResource(R.drawable.track_selector);

//设置Switch事件监听

customSwitchCompat.setOnCheckedChangeListener(this);

}

/*

继承监听器的接口并实现onCheckedChanged方法

* */

@Override

publicvoidonCheckedChanged(CompoundButton buttonView,booleanisChecked) {

if(isChecked){

custom_result.setText("开");

}else{

custom_result.setText("关");

}

}

}

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 204,293评论 6 478
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 85,604评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 150,958评论 0 337
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,729评论 1 277
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,719评论 5 366
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,630评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 38,000评论 3 397
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,665评论 0 258
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,909评论 1 299
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,646评论 2 321
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,726评论 1 330
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,400评论 4 321
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,986评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,959评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,197评论 1 260
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 44,996评论 2 349
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,481评论 2 342

推荐阅读更多精彩内容