我有两个按钮的布局。默认情况下,按钮2是不可见的。
如果用户点击按钮1,将打开一个带有CheckBox的对话框。如果用户检查CheckBox,我希望按钮2可见。
这是我的代码,但它不起作用:
View chechboxveiw = View.inflate(this, R.layout.dingoosetting, null);
CheckBox checkBox = (CheckBox) chechboxveiw.findViewById(R.id.taknafareding);
checkBox.setOnCheckedChangeListener(
new OnCheckedChangeListener() {
@Override
public void onCheckedChanged(CompoundButton arg0, boolean arg1) {
if (arg1 == true) {
// sett my button visible
stopacorddinger.setVisibility(4);
}
}
}
);