Android 开关控件Switch的简单使用
程序开发
2023-09-17 06:48:38
在很多app的设置页面,或者是一些功能的开关界面,我们常常用到 Switch(开关) 来展示状态,今天说说新学到的Switch控件。
最基本情况的按钮:
效果如图:
简单设置:
效果展示:
这里layout_width:这能设置整个布局的宽度,不能设置具体的Switch的大小,需要使用switchMinWidth属性来设置。
thumb:文字所携带的背景,设置为背景色进行隐藏。不设置会出现一个背景框。
track:设置开关的背景图片,类似于button的background。
textoff、texton:设置开关时的文字显示。
最后说说Switch的点击事件:
private Switch mSwitch;private TextView mText;@Overrideprotected void onCreate(Bundle savedInstanceState) {super.onCreate(savedInstanceState);setContentView(R.layout.activity_main);mSwitch = (Switch) findViewById(R.id.switch_);mText = (TextView) findViewById(R.id.text_);// 添加监听mSwitch.setOnCheckedChangeListener(new CompoundButton.OnCheckedChangeListener() {@Overridepublic void onCheckedChanged(CompoundButton buttonView, boolean isChecked) {if (isChecked){mText.setText("开启");}else {mText.setText("关闭");}}});}
如图所示,没什么可以说的。。
标签:
上一篇:
浅谈 2018 移动端跨平台开发方案
下一篇:
相关文章
-
无相关信息