如何在HashMap中设置图像URI

时间:2015-06-04 23:01:32

标签: java android image hashmap uri

我正在构建一个listview,并且使用map.put获取我想要HashMap的图像的URI。

获取URI的函数可以正常工作我可以使用setImageURI(uri)设置图像视图。

我应该在map.put(“flag”,value)中使用什么值;

以下代码是postexecute的一部分

try {
                 android = json.getJSONArray(TAG_OS);
                 oslist.clear();
                 for(int i = 0; i < android.length(); i++){
                     JSONObject c = android.getJSONObject(i);

                 String counter = c.getString(TAG_COUNTER);
                 String id = c.getString(TAG_ID);
                 String phono = c.getString(TAG_PHONO);
                 String error = c.getString(TAG_ERROR);

                 cur.moveToFirst();
                 cur.moveToPosition(i);
                 name = cur.getString(cur.getColumnIndex(ContactsContract.CommonDataKinds.Phone.DISPLAY_NAME));

                 Uri uri = getPhotoUri(Long.parseLong(fetchContactIdFromPhoneNumber(phono)));

                 HashMap<String, String> map = new HashMap<String, String>();
                 map.put("flag", value);
                 map.put(TAG_COUNTER, name);
                 map.put(TAG_ID, id);
                 map.put(TAG_PHONO, phono);
                 map.put(TAG_ERROR, error);
                 oslist.add(map);
                 list=(ListView)findViewById(R.id.lv_addcontact);
                 ListAdapter adapter = new SimpleAdapter(MainActivity.this, oslist,
                     R.layout.list_item,
                     new String[] {"flag",TAG_COUNTER, TAG_PHONO, TAG_ERROR}, new int[] {
                         R.id.flag,R.id.txtView_name, R.id.txtview_number, R.id.txtview_check});
                 list.setAdapter(adapter);

                 }

        }

感谢所有人的帮助

1 个答案:

答案 0 :(得分:0)

你是否必须将字符串映射中的Uri转换为字符串?如果是这样,您可以使用uri.toString()获取Uri的String表示形式,然后通过执行Uri.parse(string)从地图中检索Uri。

否则我只想创建一个HashMap<String, Parcelable>