前端之家收集整理的这篇文章主要介绍了
android – 如何通过名称(字符串)获取资源,而不是整数,
前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
例如:
public final class R {
public static final class raw {
public static final int yuri=0x7f040000;
}
}
如何获取资源名称?
没有使用R.raw.yuri =(int)
getResources().getIdentifier( "yuri","raw",getPackageName() );
我发现这是非常慢的.在做了一些分析后,我把它从我的整个项目中删除,并使用了int [].
原文链接:https://www.f2er.com/android/313736.html