如何在SimpleAdapter中使用ImageView?

时间:2015-02-17 22:45:30

标签: java android

我有一个使用Google Cloud Endpoints的Android应用。我的一个活动向数据存储区发送请求以获取Message个实体的列表。 该实体具有byte[]字段,其中包含缩略图图像。还有另外两个字段:Author和Timestamp。

然后,活动必须显示ListView,同时显示缩略图和作者以及时间戳字段。这是我当前的代码,它只显示我的一些资源图像和作者/时间戳字段:

messages_list_layout.xml

    <?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent" >

<ImageView
    android:id="@+id/messages_thumbnail"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_marginLeft="7dp"
    android:layout_marginTop="7dp"
    android:background="@null"
    android:src="@drawable/photo" />

<TextView
    android:id="@+id/messages_author"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignBottom="@id/messages_thumbnail"
    android:layout_marginLeft="7dp"
    android:layout_toRightOf="@id/messages_thumbnail"
    android:textColor="#303030" />

<TextView
    android:id="@+id/messages_timestamp"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignBottom="@id/messages_thumbnail"
    android:layout_alignParentRight="true"
    android:layout_marginRight="7dp"
    android:textColor="#303030" />

现在我使用Hashmap列表管理SimpleAdapter的部分:

final List<HashMap<String, Object>> messages = new ArrayList<HashMap<String, Object>>();
            List<Message> listmessages = messagesCollection.getItems();
            for (Message message : listmessages) {
                HashMap<String, Object> element;
                element = new HashMap<String, Object>();
                byte[] miniature = message.decodeMiniature(); //what to do with this?
                element.put("AUTHOR", message.getAuthor());
                element.put("TIMESTAMP", message.getTimestamp());
                messages.add(element);
            }
            ListAdapter simpleAdapter = new SimpleAdapter(context,
                    messages, R.layout.messages_list_layout,
                    new String[] { "AUTHOR", "TIMESTAMP"},
                    new int[] { R.id.messages_author, R.id.messages_timestamp });
            listView_messages.setAdapter(simpleAdapter);

1 个答案:

答案 0 :(得分:1)

您应该使用BitmapFactory将字节数组解码为位图并将其存储到使用新密钥进行映射(例如&#34; AUTHOR&#34;,&#34; TIMESTAMP&#34;)

例如:

byte[] miniature = message.decodeMiniature();
Bitmap image = BitmapFactory.decodeByteArray(miniature, 0, miniature.length);
element.put("IMAGE", image);
...
ListAdapter simpleAdapter = new SimpleAdapter(context,
                messages, R.layout.messages_list_layout,
                new String[] { "AUTHOR", "TIMESTAMP", "IMAGE"},
                new int[] { R.id.messages_author, R.id.messages_timestamp, R.id.messages_thumbnail });

并使用binder:

adapter.setViewBinder(new SimpleAdapter.ViewBinder() {
                    @Override
                    public boolean setViewValue(View view, Object data,String textRepresentation) 
                    {
                        if((view instanceof ImageView) & (data instanceof Bitmap)) 
                        {
                            ImageView iv = (ImageView) view;
                            Bitmap bm = (Bitmap) data;
                            iv.setImageBitmap(bm);
                            return true;
                        }
                        return false;
                    }
                });