我需要关于ListView的帮助,我是android的新手,我必须创建一个ListView multiple_choice(我的意思是右边的复选框),左边会有图标。我列出了清单,直到选择一个项目没有问题。但是当我选择项目时,复选框将不会被选中。我使用一个adapterclass来制作带有图标的列表,并使用imageView和CheckedTextView。这是我的代码
public class EfficientAdapter extends BaseAdapter {
private LayoutInflater mInflater;
private Bitmap online;
private Bitmap offline;
private ArrayList<String> mCurrencyNames;
public ViewHolder holder;
public EfficientAdapter(Context context,ArrayList<String> mCurrencyNames) { // Cache the LayoutInflate to avoid asking for a new one each time.
mInflater = LayoutInflater.from(context);
this.mCurrencyNames = mCurrencyNames;
// Icon bound to the row.
online = BitmapFactory.decodeResource(context.getResources (), R.drawable.markeronline);
offline = BitmapFactory.decodeResource(context.getResources (), R.drawable.markeroffline);
}
/** * The number of items in the list is determined by the number of speeches * in our array. * * @see android.widget.ListAdapter#getCount() */
public int getCount() {
// return DATA.length;
return mCurrencyNames.size();
}
/** * Since the data comes from an array, just returning the index is * sufficent to get at the data. If we were using a more complex data * structure, we would return whatever object represents one row in the * list. * * @see android.widget.ListAdapter#getItem(int) */
public Object getItem(int position) {
return position;
}
/** * Use the array index as a unique id. * * @see android.widget.ListAdapter#getItemId(int) */
public long getItemId(int position) {
return position;
}
/** * Make a view to hold each row. * * @see android.widget.ListAdapter#getView(int, android.view.View, * android.view.ViewGroup) */
public View getView(int position, View convertView, ViewGroup parent) {
// A ViewHolder keeps references to children views to avoid unneccessary calls
// to findViewById() on each row.
//When convertView is not null, we can reuse it directly, there is no need
// to reinflate it. We only inflate a new View when the convertView supplied
// by ListView is null.
if (convertView == null) {
convertView = mInflater.inflate (R.layout.menu_row, null);
// Creates a ViewHolder and store references to the two children views
// we want to bind data to.
holder = new ViewHolder();
holder.text = (CheckedTextView) convertView.findViewById (R.id.text);
holder.icon = (ImageView) convertView.findViewById (R.id.icon);
convertView.setTag(holder);
}
else {
// Get the ViewHolder back to get fast access to the TextView
// and the ImageView.
holder = (ViewHolder) convertView.getTag();
}
// Bind the data efficiently with the holder.
holder.text.setText(mCurrencyNames.get(position));
String status = Friends.nodelist.get(position).getNamedItem("status").getNodeValue();
if(status.equals("1")){
holder.icon.setImageBitmap(online);
}
else
holder.icon.setImageBitmap(offline);
return convertView;
}
public void refresh(ArrayList<String> list){
mCurrencyNames = list;
}
static class ViewHolder {
public CheckedTextView text;
public ImageView icon;
}
}
这是我的适配器代码,我使用该代码进行解决方案
list.setOnItemClickListener(new OnItemClickListener() {
public void onItemClick(AdapterView<?> parent, View view,int position, long id) {
RelativeLayout itemLayout = (RelativeLayout)list.getChildAt(position);
CheckedTextView ctv = (CheckedTextView)itemLayout.findViewById(R.id.text);
ctv.toggle();
}
});
但在该代码之后,当我选择第4项时,它会检查第1项。谢谢你的帮助。
答案 0 :(得分:0)
将onClickListener
设置为CheckedTextView
。它会起作用。
OR
将CheckedTextView
的clickable属性设置为false。