在我的 android 应用程序中,我想定义一个应标记为已选中的复选框。谁能解释一下怎么做?
提前感谢
您可以在 xml 中定义如下:
<CheckBox
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Your text"
android:checked="true"
/>
如果你想在 java 中达到同样的效果,你可以setChecked(boolean)
使用checkbox
.
喜欢,
checkbox.setChecked(true);
使用setChecked(boolean)
方法。它是 CompoundButtons 中的一种方法,CheckBox 扩展了该方法。请参阅此处的文档。
试试这个,
public void setSelected(布尔选择)