android基本控件学习-----ToggleButton&Switch
ToggleButton(开关按钮)和Switch(开关)讲解:
一、核心属性讲解:
(1)ToggleButton
textOn:按钮被选中的时候文字显示
textOff:按钮没有被选中的时候文字显示
(2)switch:
showText:设置textOn/off的时候文字是否显示
android:showText:设置on/off的时候是否显示文字,boolean
android:splitTrack:是否设置一个间隙,让滑块与底部图片分隔,boolean
android:switchMinWidth:设置开关的最小宽度
android:switchPadding:设置滑块内文字的间隔
android:textOff:按钮没有被选中时显示的文字
android:textOn:按钮被选中时显示的文字
android:textStyle:文字风格,粗体,斜体写划线那些
android:track:底部的图片
android:thumb:滑块的图片
可以自己动手试一试每一个属性