首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 移动开发 > Android >

android经过图片名称获取资源识别码

2014-01-13 
android通过图片名称获取资源识别码package com.listviewtestimport android.content.Context/** * 获取

android通过图片名称获取资源识别码
package com.listviewtest;import android.content.Context;/** * 获取资源文件识别码 */public class IdentifierUtil {public static int getIdentifier(Context context, String type, String payId) {String packageName = context.getPackageName();return context.getResources().getIdentifier(payId, type, packageName);}public static int getDrawableIdentifier(Context context, String payId) {return getIdentifier(context, "drawable", payId);}public static int getStyleIdentifier(Context context, String payId) {return getIdentifier(context, "style", payId);}}

?

热点排行