holder.text.setText(DATA [位置]); holder.icon.setImageBitmap((position& 1)== 1?mIcon1:mIcon2);
return convertView;
}
以上代码让我只显示图标1和2,我添加了其他图像,但不知道如何将这些图标添加到列表视图。
任何帮助都会受到赞赏,因为我刚刚来到这里。
答案 0 :(得分:1)
我不确定这是否正是您所寻找的,但您可以尝试这样的事情。
@Override
public void onCreate(Bundle icicle) {
super.onCreate(icicle);
setContentView(R.layout.main);
setListAdapter(new CustomAdapter(this));
selection=(TextView)findViewById(R.id.selection);
}
class CustomAdapter extends ArrayAdapter {
Activity context;
CustomAdapter(Activity context) {
super(context, R.layout.row, items);
this.context=context;
}
public View getView(int position, View convertView, ViewGroup parent) {
View row=convertView;
if (row==null) {
LayoutInflater inflater=context.getLayoutInflater();
row=inflater.inflate(R.layout.row, null);
}
TextView label=(TextView)row.findViewById(R.id.label);
label.setText(items[position]);
ImageView icon=(ImageView)row.findViewById(R.id.icon);
//you can put your own logic to add images here
if (items[position].length()>4) {
icon.setImageResource(R.drawable.delete);
}
else {
icon.setImageResource(R.drawable.ok);
}
return(row);
}
}