风流不在谈锋胜,袖手无言味最长。这篇文章主要讲述Android学习03相关的知识,希望能为你提供帮助。
ToggleButton和Switch
【Android学习03】状态开关ToggleButton与开关switch也是由button按钮派生出来的,因此他们的本质也是按钮,button支持的各种属性,方法toggleButton和switch也适用。
ToggleButton常用的属性:
android:textOff:按钮关闭时显示的文本;
android:textOn:按钮开启时显示的文本;
Switch也用于开关按钮。Switch和ToggleButton稍有区别:ToggleButton是按下弹起的开关,而Switch是左右滑动的开关。
开关监听为:setOnCheckedChangeListener,覆写onCheckedChanged(CompoundButton buttonView, boolean isChecked)方法,其中isChecked表示是否选中。
layout文件
< ?xml version="1.0" encoding="utf-8"?> < RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="match_parent"> < ToggleButton android:id="@+id/tbtn_open" android:layout_width="wrap_content" android:layout_height="wrap_content" android:textOn="开" android:textOff="关" android:checked="true"/> < Switch android:id="@+id/sw" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_below="@+id/tbtn_open" android:layout_marginTop="20dp" android:checked="true"/> < /RelativeLayout>
Activity
public class ToggleButtonActivity extends AppCompatActivity implements CompoundButton.OnCheckedChangeListener{private ToggleButton mBtnopen; private Switch mBtnsw; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_toggle_button); mBtnopen = findViewById(R.id.tbtn_open); mBtnsw = findViewById(R.id.sw); mBtnopen.setOnCheckedChangeListener(this); mBtnsw.setOnCheckedChangeListener(this); }@Override public void onCheckedChanged(CompoundButton compoundButton, boolean isChecked) { switch (compoundButton.getId()){ case R.id.tbtn_open: if(compoundButton.isChecked()) Toast.makeText(this,"开",Toast.LENGTH_SHORT).show(); else Toast.makeText(this,"关",Toast.LENGTH_SHORT).show(); break; case R.id.sw: if(compoundButton.isChecked()) Toast.makeText(this,"开关:ON",Toast.LENGTH_SHORT).show(); else Toast.makeText(this,"开关:OFF",Toast.LENGTH_SHORT).show(); break; } } }
效果图
文章图片
文章图片
文章图片
文章图片
推荐阅读
- appium--自动检测端口和释放端口
- APP测试-内存测试
- android开发实战-记账本APP
- 寒假学习进度三——安卓的一些基本组件
- 如何在Windows或Linux中创建端口监听器–方便进行连接测试
- 用于中间件/WebSphere管理的Linux命令
- Linux中的Crontab –带有实时示例和工具
- 有用的Linux查找系统管理员命令
- 如何在线创建应用程序架构图()