完整内容,请查看:http://www.zhdoc.net/android/reference/android/widget/CheckBox.html
CheckBox
public class CheckBox
extends CompoundButton
| 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 Attributes,Button Attributes,TextView Attributes。 View Attributes
摘要
完整内容,请查看:http://www.zhdoc.net/android/reference/android/widget/CheckBox.html
本文介绍了Android中的CheckBox控件,一种特殊的双态按钮,可用于表示选中或未选中的状态。文章通过示例代码展示了如何在Activity中使用CheckBox,并提供了一些基本的属性说明。
1075

被折叠的 条评论
为什么被折叠?



