我有一个listview和自定义布局,包括TextView,ImageView,ImageButton。我希望我的图像按钮的行为类似于RadioButton。但是我的onListItemClick事件没有被调用。
public class MyListAdapter extends BaseAdapter {
Context context;
ArrayList<String> text;
ArrayList<String> Count;
int count;
public MyListAdapter(Context ctx, ArrayList<String> text, ArrayList<String> Count) {
this.context = ctx;
this.textAnswers = text;
this.optionCount = Count;
}
@Override
public int getCount() {
return Count.size();
}
@Override
public Object getItem(int position) {
return position;
}
@Override
public long getItemId(int position) {
return position;
}
@Override
public View getView(int position, View convertView, ViewGroup parent) {
if(convertView == null) {
convertView = LayoutInflater.from(context).inflate(R.layout.custom_layout, null);
}
ImageButton choice = (ImageButton)convertView.findViewById(R.id.ImageButton);
if(imageChoice != null) {
choice.setImageResource(R.drawable.radio_unselected);
}
TextView txt = (TextView)convertView.findViewById(R.id.TextView);
txt.setText(Count.get(position));
TextView txtText = (TextView)convertView.findViewById(R.id.TextViewAnswer);
txtText.setText(textAnswers.get(position));
return convertView;
}
}
我的onListItemClick为,
@Override
protected void onListItemClick(ListView listView, View v, int position, long id) {
super.onListItemClick(listView, v, position, id);
ImageButton choice = (ImageButton)v.findViewById(R.id.ImageButton);
choice.setImageResource(R.drawable.radio_selected);
}
现在请任何一个帮助给我的图像按钮像radiobutton这样的行为。我错过的最重要的是我的onListItemClick没有被调用。 另外我在我的custom_layout上设置了android:focusable =“false”android:focusableInTouchMode =“false”android:clickable =“false”的所有控件。 提前谢谢。
答案 0 :(得分:2)
您需要在主活动中向ListView添加setOnItemClickListener,否则,您将永远不会调用itemClick。
例如:
OnCreate()方法:
ListView lv = (ListView) findViewById(R.id.listview1);
lv.setOnItemClickListener(this);
//创建下面的方法,让活动实现onitemclicklistener
public void onItemClick(AdapterView<?> a, View v, int position, long id) {
//set action here
}
应该有效:)
答案 1 :(得分:2)
如果您的活动是ListActivity,并且您的列表视图的id = @android:id / list,则无需设置监听器即可调用onListItemClick。
答案 2 :(得分:1)
您可能需要在列表项视图中设置android:descendantFocusability="blocksDescendants"
。这解决了我。
...
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:descendantFocusability="blocksDescendants">
...
答案 3 :(得分:0)
在ImageButton的XML中设置这些值,然后它应该可以工作。
android:focusable="false"
android:focusableInTouchMode="false"