如何在android中获取已检查项目列表对话框的索引值

时间:2013-02-22 10:50:13

标签: if-statement dialog android-listview boolean

我正在使用对话框复选框列表。现在我想获取已检查项的索引值,以便我可以将特定的布尔值设置为true。实际上我是android新手,所以如果我问一些愚蠢的东西,所以我很抱歉

      private void repeat(){
    AlertDialog.Builder ab=new AlertDialog.Builder(this);
    ab.setTitle("Repeat Alarm");
    ab.setMultiChoiceItems(days, null, new OnMultiChoiceClickListener(){

        @Override
        public void onClick(DialogInterface arg0, int arg1, boolean arg2) {
            // TODO Auto-generated method stub

            if(arg2){
                //chk_monday=true;
                Toast.makeText(getApplicationContext(), "ss", Toast.LENGTH_LONG).show();

            }

0 个答案:

没有答案