本文主要是介绍小知识---日夜间模式--开关控件Switvh,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
属性
android:showText:设置on/off的时候是否显示文字,boolean
android:splitTrack:是否设置一个间隙,让滑块与底部图片分隔,boolean
android:switchMinWidth:设置开关的最小宽度
android:switchPadding:设置滑块内文字的间隔
android:switchTextAppearance:设置开关的文字外观,暂时没发现有什么用…
android:textOff:按钮没有被选中时显示的文字
android:textOn:按钮被选中时显示的文字
android:textStyle:文字风格,粗体,斜体写划线那些
android:track:底部的图片
Xml
<TextViewandroid:layout_width="wrap_content"android:layout_height="wrap_content"android:id="@+id/tv"android:text="日间模式"/><Switchandroid:id="@+id/switch1"android:layout_width="wrap_content"android:layout_height="wrap_content"android:textOn="关"android:textOff="开"/>
监听事件
switch1.setOnCheckedChangeListener(new CompoundButton.OnCheckedChangeListener() {@Overridepublic void onCheckedChanged(CompoundButton buttonView, boolean isChecked) {if (isChecked) {Toast.makeText(MainActivity.this, "开", Toast.LENGTH_SHORT).show();tv.setText("夜间模式");} else {Toast.makeText(MainActivity.this, "关", Toast.LENGTH_SHORT).show();tv.setText("日间模式");}}});
具体的详细背景可以查看
https://blog.csdn.net/qq_34763699/article/details/54954394
这篇关于小知识---日夜间模式--开关控件Switvh的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!