我正在开发一个包含许多活动和课程的 android 项目。
在少数几个布局中,我有一个工具,用户可以在其中选择全部标记,以便选中所有复选框。
但是,我面临的问题是我只知道这样做的一种方法(太长了) - 通过为每个现有布局创建一个标记布局,将原始布局代码粘贴到标记布局代码中,然后给出所有复选框已选中。这要求我也为每个布局创建所有取消标记的 xml。
请告诉我一种方法,我可以为 markall 创建一个已选中所有复选框的 xml,然后在单击全部标记时在原始布局之上调用该布局。
假设您有以下布局
<LinearLayout
android:id="@+id/checkbox_container"
...params>
<CheckBox ...params/>
<TextView ...params/>
<CheckBox ...params/>
<SomeView ...params/>
<CheckBox ...params/>
</LinearLayout>
像这样在 Activity 中获取您的 checkBoxLayout
LinearLayout container = (LinearLayout)findViewById(R.id.checkbox_container);
像这样迭代容器内的孩子:
for (int i = 0; i < container.getChildCount(); i++){
View v = container.getChildAt(i);
if (v instanceof CheckBox){
CheckBox cb = (CheckBox)v;
// isChecked should be a boolean indicating if every Checkbox should be checked or not
cb.setChecked(isChecked)
}
}
CheckBox MarkAllCheckBox =
(CheckBox) findViewById( R.id.MarkAllCheckBox);
MarkAllCheckBox.setOnCheckedChangeListener(new OnCheckedChangeListener()
{
public void onCheckedChanged(CompoundButton buttonView, boolean isChecked)
{
if ( isChecked )
{
checkBox1.setChecked("true");
checkBox2.setChecked("true");
checkBox3.setChecked("true");
//so on
}
}
});