Android:多选按钮

77 篇文章 0 订阅

每个多选框都是独立的,可以通过迭代所有多选框,然后根据其状态是否被选中再获取其值。

l CheckBox.setChecked (true);// 设置成选中状态。
l CheckBox.getText ();// 获取多选框的值
l 调用 setOnCheckedChangeListener () 方法,处理多选框被选择事件,把 CompoundButton.OnCheckedChangeListener 实例作为参数传入



界面设计:

<?xml version="1.0"encoding="utf-8"?>

<LinearLayout

  xmlns:android="http://schemas.android.com/apk/res/android"

 android:layout_width="wrap_content"

 android:layout_height="fill_parent">

  <CheckBoxandroid:id="@+id/checkboxjava"

   android:layout_width="wrap_content"

   android:layout_height="wrap_content"

    android:text="java" />

  <CheckBoxandroid:id="@+id/checkboxdotNet"

   android:layout_width="wrap_content"

   android:layout_height="wrap_content"

    android:text="dotNet" />

  <CheckBoxandroid:id="@+id/checkboxphp"

   android:layout_width="wrap_content"

   android:layout_height="wrap_content"

    android:text="PHP" />

   

    <Button android:id="@+id/checkboxButton"

   android:layout_width="fill_parent"

   android:layout_height="wrap_content"

    android:text="获取值" />

</LinearLayout>

代码处理:

public class CheckBoxActivity extends Activity {

private static final String TAG ="CheckBoxActivity";

private List<CheckBox> checkboxs = newArrayList<CheckBox>();

 

    @Override

    public voidonCreate(Bundle savedInstanceState) {

       super.onCreate(savedInstanceState);

       setContentView(R.layout.checkbox);

       checkboxs.add((CheckBox) findViewById(R.id.checkboxdotNet));

       checkboxs.add((CheckBox) findViewById(R.id.checkboxjava));

       checkboxs.add((CheckBox) findViewById(R.id.checkboxphp));

       checkboxs.get(1).setChecked(true);//设置成选中状态

        for(CheckBoxbox : checkboxs){

          box.setOnCheckedChangeListener(listener);

        }

        Buttonbutton = (Button)findViewById(R.id.checkboxButton);

       button.setOnClickListener(new View.OnClickListener() { 

  @Override

  public voidonClick(View v) {

   List<String> values = newArrayList<String>();

   for(CheckBox box : checkboxs){

  if(box.isChecked()){

      values.add(box.getText().toString());

  }

   }

   Toast.makeText(CheckBoxActivity.this,values.toString(), 1).show();

  }

  });

    }

   CompoundButton.OnCheckedChangeListener listener = newCompoundButton.OnCheckedChangeListener() {  @Override

  public voidonCheckedChanged(CompoundButton buttonView, boolean isChecked) {

  CheckBox checkBox= (CheckBox) buttonView;

  Log.i(TAG,"isChecked="+ isChecked +",value="+ checkBox.getText());//输出单选框的值

  }

    };

}


  • 0
    点赞
  • 2
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值