通过资源名称获取资源ID, “drawable” 可以是其他资源包名等
private static int getDrawableId(Context context, String resName) {
return context.getResources().getIdentifier(resName, "drawable", context.getPackageName());
}
通过资源名称获取资源ID, “drawable” 可以是其他资源包名等
private static int getDrawableId(Context context, String resName) {
return context.getResources().getIdentifier(resName, "drawable", context.getPackageName());
}
本文标题:Android 资源名获取Id
本文链接:https://www.haomeiwen.com/subject/qimwodtx.html
网友评论