我在上創建方法增加了兩個複選框複選框的Android
checkBox1 = (CheckBox) findViewById(R.id.checkBox1);
checkBox2 = (CheckBox) findViewById(R.id.checkBox2);
checkBox1.setOnCheckedChangeListener(this) ;
checkBox2.setOnCheckedChangeListener(this) ;
的複選框,當ischeck()的照片將被添加到mainlayout當取消選中的圖片將是主要功能刪除>>我使用的代碼波紋管,第一個複選框工作正常第二個複選框,當我檢查它顯示的照片,然後他們我可以刪除他們,即使取消選中...哪裏是我的代碼錯了?
public void onCheckedChanged(CompoundButton buttonView, boolean isChecked) {
// TODO Auto-generated method stub
if(checkBox1.isChecked())
{
......
mapOverlays.add(custom);
}
else {
mapOverlays.remove(custom) ;
}
if (checkBox2.isChecked())
{
....
mapOverlays.add(custom2);
}
else
{
mapOverlays.remove(custom2) ;
}
}
}
是是我注意到,但它仍然沒有與我合作 – user1413188 2012-07-10 08:44:21
yeeees它的工作,但我面臨另一個問題,當我檢查兩個在一起,然後我做的第一個複選框的圖片不會被刪除的檢查... – user1413188 2012-07-10 08:55:03
請幫我:) – user1413188 2012-07-10 08:59:07