[Android UI介面] ListView與arrays.xml結合使用的問題

來源:互聯網
上載者:User

摘自:http://www.eoeandroid.com/thread-64029-1-1.html

我要做個表徵圖和文字結合的ListView,表徵圖資料也寫在了xml裡(見下方的arrays.xml)。但是輸出發現,這個
@drawable/latest不是id值,而是這個圖片的路徑值。我怎麼存放呢?以前的寫法是map.put("icon",
R.drawable.XXX); 就可以綁定表徵圖了...
簡短的代碼如下:

  1. String[] iconArr = getResources().getStringArray(R.array.feed_icons);
  2. String[] titleArr = getResources().getStringArray(R.array.feed_names);
  3. for(int i=0; i<iconArr.length; i++)
  4. {
  5.             map = new HashMap<String, Object>();
  6.             ImageView v = new ImageView(getContext());
  7.             map.put("icon", iconArr[i]); //這樣寫是錯誤的:(  應該怎樣寫呢
  8.             map.put("title", titleArr[i]);
  9.             list.add(map);
  10. }

複製代碼


arrays.xml如下:

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <resources>
  3.         
  4.         <string-array name="feed_names">
  5.                 <item>新聞</item>
  6.                 <item>視頻</item>
  7.                 <item>國際新聞</item>
  8.                 <item>體育</item>
  9.                 <item>藝術</item>
  10.                 <item>餐飲</item>
  11.         </string-array>
  12.         
  13.         <string-array name="feed_icons">
  14.                 <item>@drawable/latest</item>
  15.                 <item>@drawable/video</item>
  16.                 <item>@drawable/world</item>
  17.                 <item>@drawable/sports</item>
  18.                 <item>@drawable/arts</item>
  19.                 <item>@drawable/dining</item>
  20.         </string-array>
  21. </resources>

複製代碼

解決方案:
特別感謝LuoYer

  1. Map<String, Object> map;
  2.         TypedArray ta = getResources().obtainTypedArray(R.array.feed_icons);
  3.         String[] titleArr = getResources().getStringArray(R.array.feed_names);
  4.         for(int i=0; i<titleArr.length; i++)
  5.         {
  6.             map = new HashMap<String, Object>();
  7.             map.put("icon", ta.getResourceId(i, 0));
  8.             map.put("title", titleArr[i]);
  9.             list.add(map);
  10.         }
複製代碼 ============================    private void initAdapters(Context context) {
        TypedArray mainNavIcon = context.getResources().obtainTypedArray(R.array.mainNavIcon);
        String[] mainNav = context.getResources().getStringArray(R.array.mainNav);
        mHomeAdapter = new PopupIconTextAdapter(context);
        for (int i = 0; i < mainNav.length; i++) {
            mHomeAdapter.add(getIconTextListItem(context, mainNavIcon.getResourceId(i, 0), mainNav[i]));
        }
    }
   
    private IconTextListItem getIconTextListItem(Context context, int mainNavIcon, String mainNavText) {
        IconTextListItem iconText = new IconTextListItem(context.getResources().getDrawable(
                mainNavIcon), mainNavText);
        return iconText;
    }
相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.