Android7.0中文文档 --- CheckBox

来源:互联网 发布:墨子号成功发射知乎 编辑:程序博客网 时间:2024/06/05 02:09

完整内容,请查看:http://www.zhdoc.net/android/reference/android/widget/CheckBox.html

CheckBox

public class CheckBox
extendsCompoundButton

java.lang.Object   ↳android.view.View    ↳android.widget.TextView     ↳android.widget.Button      ↳android.widget.CompoundButton       ↳android.widget.CheckBox
已知的直接子类


A checkbox is a specific type of two-states button that can be either checked or unchecked. A example usage of a checkbox inside your activity would be the following:
CheckBox是一种特殊的双态按钮,其有选中和为选中2种状态。在你的activity中使用一个CheckBox的例子如下:

public class MyActivity extends Activity { protected void onCreate(Bundle icicle) { super.onCreate(icicle); setContentView(R.layout.content_layout_id); final CheckBox checkBox = (CheckBox) findViewById(R.id.checkbox_id); if (checkBox.isChecked()) { checkBox.setChecked(false); } } }

See the Checkboxes guide.
请参考CheckBoxes指南。

XML attributes
XML属性

See CompoundButton Attributes,Button Attributes,TextView Attributes,View Attributes
请参考CompoundButton AttributesButton AttributesTextView AttributesView Attributes

摘要

 完整内容,请查看:http://www.zhdoc.net/android/reference/android/widget/CheckBox.html

原创粉丝点击