我有一个应用程序,我必须在自定义列表视图中显示按钮和组合框。我有使用基本适配器添加按钮和组合框。但是找不到组合框的值。我尝试了选择监听器但没有工作
![在此处输入图片说明] [1]
这里我在列表项中有组合框,我想从中为每个列表项检索值
我尝试了以下代码,但没有工作
holder.spindata.setOnItemSelectedListener(new OnItemSelectedListener() {
@Override
public void onItemSelected(AdapterView<?> parent, View view,
int position, long id) {
// TODO Auto-generated method stub
}
@Override
public void onNothingSelected(AdapterView<?> parent) {
// TODO Auto-generated method stub
}
});
答案 0 :(得分:0)
public void onItemSelected(AdapterView parent,View view, int position,long id){
ComboBox b = view.findViewById(R.id.your_comboBox_name);
//After that check that this combo Box checked or not
}