嘿我试图在我的ListView中添加图标。 这就是我的ListAdapter的样子。
ListAdapter adapter = new SimpleAdapter(this, menuItems,R.layout.list_item,
new String[] { KEY_NAME, Icon }, new int[] {R.id.name, R.id.icon});
setListAdapter(adapter);
这就是我获取图标的方式
String imgFilePath = ASSETS_DIR + ICON_NAME;
try {
Bitmap bitmap = BitmapFactory.decodeStream(this.getResources().getAssets()
.open(imgFilePath));
Icon.setImageBitmap(bitmap);
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
我应该如何向ListView添加图标?我尝试在互联网上使用一些例子,但看起来ListAdaptar和ArrayList的构建方式完全不同。
我的列表项xml文件。
<ImageView
android:id="@+id/myicon"
android:layout_gravity="left"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
<TextView
android:id="@+id/name"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:textColor="#dc6800"
android:textSize="16sp"
android:textStyle="bold"
android:paddingTop="6dip"
android:paddingBottom="2dip" />
答案 0 :(得分:0)
我认为您需要扩展BaseAdapter以获得具有自定义单元UI的自定义适配器。并加载图标使用AsyncTask。