Android教程網
  1. 首頁
  2. Android 技術
  3. Android 手機
  4. Android 系統教程
  5. Android 游戲
 Android教程網 >> Android技術 >> 關於Android編程 >> Android使用getIdentifier()獲取資源Id的方法

Android使用getIdentifier()獲取資源Id的方法

編輯:關於Android編程

本文實例講述了Android使用getIdentifier()獲取資源Id的方法。分享給大家供大家參考,具體如下:

int i= getResources().getIdentifier("icon", "drawable", getPackageName()) ;
if(i>0)
 {Log.i("aa","aa");}
else
 {Log.i("vbv","aa");}

或者:

int resID = getResources().getIdentifier("org.loveandroid.androidtest:drawable/gallery_photo_1",null,null);
int resID = getResources().getIdentifier("org.anddev.android.testproject:drawable/bug", null, null);
// or
int resID = getResources().getIdentifier("bug", "drawable", "org.anddev.android.testproject");
//第一個參數:full_package:type/filename_without_ending是這種格式 然後其他的可以為null
int idFlag = getResources().getIdentifier(getPackageName() + ":drawable/flag", null, null);
// 或是
int idFlag = getResources().getIdentifier("flag", "drawable", getPackageName());
var Drawable[] dw = new Drawable[10];
for (int i = 1; i <= 10; i++) {
 int id = getResources().getIdentifier("flag" + i, "drawable", getPackageName());
 dw[i-1] = getResources().getDrawable(id);
}
//用反射法 可以得到 所有的資源
private void
 _DumpAllResourceIDs(Class<?> classType)
  throws IllegalArgumentException {
 Field[] fIDs = classType.getFields();
 try {
  for (int i = 0; i < fIDs.length; i++) {
   Field fld = fIDs[i];
   int nID = fld.getInt(null);
   Log.d("dbg",
    classType.getSimpleName() + " " +
    i + ": " +
    fld.getName() + "=" +
    nID);
  }
 } catch (Exception e) {
  throw new IllegalArgumentException();
 }
}
import java.lang.reflect.Field;
...
 _DumpAllResourceIDs(R.layout.class);
 _DumpAllResourceIDs(R.drawable.class);

結果:

R$layout 0: main=2130903040
R$layout 1: small_spinner_dropdown_item=2130903041
R$drawable 0: icon=2130837504

有時候我們需要動態的取得一個一個控件的id,然後進行操作,經過在網上查找,找到了一下方法

getResources().getIdentifier("textView01", "id", "cn.xxx.xxx");

第一個參數為ID名,第二個為資源屬性是ID或者是Drawable,第三個為包名。

做項目過程中遇到一個問題,從數據庫裡讀取圖片名稱,然後調用圖片。直接用R.drawable.?無法調用。查了好多地方最後找到了個方法,分享給大家,希望有幫助。

主要由兩種方法,個人建議第二種。

1. 不把圖片放在res/drawable下,而是存放在src某個package中(如:com.drawable.resource),這種情況下的調用方法為:

String path = "com/drawable/resource/imageName.png";
InputStream is = getClassLoader().getResourceAsStream(path);
Drawable.createFromStream(is, "src");

2. 如果還是希望直接使用res/drawable中的圖片,就需要通過下面的方法了:

假設創建工程的時候,填寫的package名字為:com.test.image

int resID = getResources().getIdentifier("imageName", "drawable", "com.test.image");
Drawable image = getResources().getDrawable(resID);

更多關於Android相關內容感興趣的讀者可查看本站專題:《Android視圖View技巧總結》、《Android編程之activity操作技巧總結》、《Android操作SQLite數據庫技巧總結》、《Android操作json格式數據技巧總結》、《Android數據庫操作技巧總結》、《Android文件操作技巧匯總》、《Android編程開發之SD卡操作方法匯總》、《Android開發入門與進階教程》、《Android資源操作技巧匯總》及《Android控件用法總結》

希望本文所述對大家Android程序設計有所幫助。

  1. 上一頁:
  2. 下一頁:
熱門文章
閱讀排行版
Copyright © Android教程網 All Rights Reserved