Android 资源名获取Id
2024-01-28 本文已影响0人
不会弹钢琴de大叔
通过资源名称获取资源ID, “drawable” 可以是其他资源包名等
private static int getDrawableId(Context context, String resName) {
return context.getResources().getIdentifier(resName, "drawable", context.getPackageName());
}