Android 根據檔案名稱載入圖片

來源:互聯網
上載者:User

今天在寫天氣程式的時候,需要從webservice擷取天氣的狀況,然後載入相應的天氣圖片,伺服器上擷取的是圖片的名字,比如"0.gif",但是程式裡需要設定為為imageView.setImageResource(R.drawable.a_0);這種格式,群友介紹了一個方法

int android.content.res.Resources.getIdentifier(String name,
String defType, String defPackage)可以使用.

找到的話就會返回資源ID,如果沒有找到返回0
int identifier = getResources().getIdentifier(name, "drawable", "com.test.weather");

第一個 參數為檔案名稱,第二個為資源屬性,第三個為包名.之後就可以調用setImageResource()方法了.
另一種思路:把圖片放在src的某個package中,而不是res/drawable中,調用方法如下:
String path = "com/drawable/resource/imageName.png";
InputStream is = getClassLoader().getResourceAsStream(path);
Drawable.createFromStream(is, "src");

本文參考了 http://blog.sina.com.cn/s/blog_6714fba701018k8h.html

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.