Android CheckBox的使用详细解析

来源:爱站网时间:2018-10-09编辑:网友分享
今天小编跟大家分享一篇Android CheckBox的使用详细解析,感兴趣的朋友跟小编一起来了解一下吧!

  今天小编跟大家分享一篇Android CheckBox的使用详细解析,感兴趣的朋友跟小编一起来了解一下吧!

  复制代码 代码如下:

  public class MainActivity extends Activity {

  TextView tv;

  CheckBox cb1;

  CheckBox cb2;

  @Override

  protected void onCreate(Bundle savedInstanceState) {

  super.onCreate(savedInstanceState);

  setContentView(R.layout.activity_main);

  cb1 = (CheckBox) findViewById(R.id.checkbox1);

  cb2 = (CheckBox) findViewById(R.id.checkbox2);

  tv = (TextView) findViewById(R.id.textview1);

  cb1.setOnCheckedChangeListener(cb);

  cb2.setOnCheckedChangeListener(cb);

  }

  private CheckBox.OnCheckedChangeListener cb = new CheckBox.OnCheckedChangeListener() {

  @Override

  public void onCheckedChanged(CompoundButton buttonView, boolean isChecked) {

  String stv = getString(R.string.hoby);

  String scb1 = getString(R.string.basketball);

  String scb2 = getString(R.string.football);

  if (cb1.isChecked() && cb2.isChecked()) {

  tv.setText(stv + ":" + scb1 + "&&" + scb2);

  } else if (cb1.isChecked() && !cb2.isChecked()) {

  tv.setText(stv + ":" + scb1);

  } else if (!cb1.isChecked() && cb2.isChecked()) {

  tv.setText(stv + ":" + scb2);

  } else {

  tv.setText(stv);

  }

  }

  };

  如下是布局文件:

  复制代码 代码如下:

  android="http://schemas.android.com/apk/res/android">

  android:layout_width="match_parent"

  android:layout_height="match_parent"

  android:orientation="vertical" >

  

  android:id="@+id/textview1"

  android:layout_width="fill_parent"

  android:layout_height="wrap_content"

  android:text="@string/hoby" />

  

  android:id="@+id/checkbox1"

  android:layout_width="wrap_content"

  android:layout_height="wrap_content"

  android:text="@string/basketball" />

  

  android:id="@+id/checkbox2"

  android:layout_width="wrap_content"

  android:layout_height="wrap_content"

  android:text="@string/football" />

  

  以上就是Android CheckBox的使用详细解析了,更多相关内容请继续关注爱站技术频道。

上一篇:Notification及NotificationManger的详细分析

下一篇:XML文件的使用详细解析

您可能感兴趣的文章

相关阅读

热门软件源码

最新软件源码下载