Android 根据字符串动态获取资源ID

1.常用方法
public int getResId(String name,Context context){
Resources r = context.getResources();
int id = r.getIdentifier(name,"drawable","com.demo");
return id;
}
2.使用反射(推荐,性能高)
public class ResourceMan {
public static int getResId(String variableName, Class<?> c) {
try {
Field idField = c.getDeclaredField(variableName);
return idField.getInt(idField);
} catch (Exception e) {
e.printStackTrace();
return -1;
}
}
}

使用方法:

int id = ResourceMan.getResId("icon",R.drawable.class);
上一篇:做10年Windows程序员与做10年Linux程序员的区别(附无数评论)(开源软件相当于熟读唐诗三百首,不会作诗也会吟)


下一篇:openstack pike 集群高可用 安装 部署 目录汇总