1. 程式人生 > >Android:根據圖片的名稱獲取對應的資源id

Android:根據圖片的名稱獲取對應的資源id

/**
	 * 根據圖片的名稱獲取對應的資源id
	 * @param resourceName
	 * @return
	 */
	public int getDrawResourceID(String resourceName) {
		Resources res=getResources();
		int picid = res.getIdentifier(resourceName,"drawable",getPackageName());
		return picid;
	}