状态开关按钮ToggleButton和开关switch的功能和用法

状态开关ToggleButton与开关switch也是由button按钮派生出来的,因此他们的本质也是按钮,button支持的各种属性,方法toggleButton和switch也适用。

toggleButton的xml属性

android:checked 表示按钮是否被选中

android:textoff 表示按钮关闭状态显示的文本

android:texton 表示按钮开启显示的文本

switch的xml属性

android:checked

android:switchMinWidth 设置开关的最小宽

android:switchPadding  设置开关与标题之间的空白

android:switchTextAppearance 设置该开关图标上的文本样式

android:textoff

android:texton

android:textStyle 设置开关的文本风格

android:thumb 指定使用自定义Drawable绘制该开关的开关按钮

android:track 指定使用自定义drawable绘制该开关的轨道

android:typeface 设置该开关的文本的字体风格



你可能感兴趣的:(状态开关按钮ToggleButton和开关switch的功能和用法)