我已尝试使用下面链接中提到的代码“质量禁用”按钮,它工作得非常好。但是,相同的代码不适用于批量启用。
Android: mass enable/disable buttons
禁用(工作)代码
TableLayout tl = (TableLayout)findViewById(R.id.table1); //
ArrayList<View> touchables = tl.getTouchables();
for(View touchable : touchables){
if( touchable instanceof Button && touchable != btnNewWord )
((Button)touchable).setEnabled(false);
}
启用(不工作)的代码
btnNewWord.setOnClickListener(new View.OnClickListener() {
public void onClick(View v) {
TableLayout tl = (TableLayout)findViewById(R.id.table1);
ArrayList<View> touchables = tl.getTouchables();
for(View touchable : touchables){
if( touchable != btnNewWord )
((Button)touchable).setEnabled(true);
}
答案 0 :(得分:3)
一旦你将按钮设置为禁用,我认为它们将不再可触摸。因此,您需要在代码中修改该点并使用其他内容来获取所有视图。您可以保留用于禁用按钮的ArrayList
,然后使用相同的按钮重新启用它们。
编辑:
试试这个:
ArrayList<View> touchables //declare globaly
然后
TableLayout tl = (TableLayout)findViewById(R.id.table1); //
touchables = tl.getTouchables();
for(View touchable : touchables)
{
if( touchable instanceof Button && touchable != btnNewWord )
((Button)touchable).setEnabled(false);
}
现在,
btnNewWord.setOnClickListener(new View.OnClickListener() {
public void onClick(View v) {
for(View touchable : touchables)
{
if( touchable != btnNewWord )
((Button)touchable).setEnabled(true);
}
}
}