android怎么同时监听在多个checkbox并显示内容

 我来答
huanglenzhi
推荐于2016-09-06 · 知道合伙人数码行家
huanglenzhi
知道合伙人数码行家
采纳数:117538 获赞数:517184
长期从事计算机组装,维护,网络组建及管理。对计算机硬件、操作系统安装、典型网络设备具有详细认知。

向TA提问 私信TA
展开全部

全选的点击事件改下就行了

public class Main extends Activity {
private static int positions;
String[] imgs;
private GridView gv ;
private Button button;
CheckBox checkBox;
private String string;
public void onCreate(Bundle savedInstanceState) {
imgs = getResources().getStringArray(R.array.city);
super.onCreate(savedInstanceState);
setContentView(R.layout.main0);
gv= (GridView) findViewById(R.id.gridview);
button = (Button) findViewById(R.id.btn);
gv.setAdapter(new CheckBoxAdapter(this));
gv.setBackgroundResource(R.drawable.back);
button.setOnClickListener(new OnClickListener(){

@Override
public void onClick(View v) {
// TODO Auto-generated method stub


//循环CheckBox数量

for (int index = 0; index < imgs.length; index++) {

//根据你前面设置的ID,查找CheckBox

//其实这样效率有点低

//可以在创建 checkBox 后,把checkBox加入到一个集合里,然后在循环集合

//这样就不用查找了控件了

checkBox = (CheckBox)gv.findViewById(index);

if(checkBox != null){

checkBox.setChecked(true);

}

String str = checkBox.getText().toString();
Log.i("xxx", str); 
}
}

});
}

class CheckBoxAdapter extends BaseAdapter {
Context context;

public CheckBoxAdapter(Context context) {
this.context = context;
}

public int getCount() {
return imgs.length;
}

public Object getItem(int position) {
return position;
}

public long getItemId(int position) {
return position;
}

public View getView(int position, View convertView, ViewGroup parent) {
checkBox= new CheckBox(context);
checkBox.setText(imgs[position]);
checkBox.setId(position);
positions=position;
checkBox.setOnCheckedChangeListener(new OnCheckedChangeListener(){

@Override
public void onCheckedChanged(CompoundButton buttonView,
boolean isChecked) {
// TODO Auto-generated method stub
if(buttonView.isChecked()){
Toast.makeText(Main.this, "你点击的是第" + buttonView.getText() + "张",
Toast.LENGTH_LONG).show(); 
string=buttonView.getText().toString();
}
}

});
return checkBox;
}
}
}
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式