android studio switch控件怎么使用
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了android studio switch控件怎么使用相关的知识,希望对你有一定的参考价值。
参考技术A didn't think that I had hurt 参考技术B adroid studio switch控件的用法如下:Switch sc=(Switch)findViewById(R.id.switch1);
sc.setOnCheckedChangeListener(new CompoundButton.OnCheckedChangeListener()
@Override
public void onCheckedChanged(CompoundButton compoundButton, boolean b)
if (b)
Toast.makeText(getApplicationContext(),"on",Toast.LENGTH_SHORT).show();
else
Toast.makeText(getApplicationContext(),"off",Toast.LENGTH_SHORT).show();
);
以上是关于android studio switch控件怎么使用的主要内容,如果未能解决你的问题,请参考以下文章
Android Studio module里面放switch语句报错 R文件找不到
android studio gravity怎么添加两个属性