您需要将资源 ID 传递给方法,但您还想访问对应的字符串资源。例如,您有 R.drawable.icon,并且您需要整数 ID 和字符串“icon”。
使用 Resources.getIdentifier()
一种解决方案是使用 Resources 类中的 getIdentifier() 方法。此方法将字符串资源名称和资源类型(例如,可绘制)作为参数,并返回关联的整数 ID。
// Get the integer ID for the icon int id = resources.getIdentifier("icon", "drawable", getPackageName()); // Retrieve the string resource String stringResource = resources.getString(id);
使用反射
另一个选项就是利用反射直接访问资源ID字段。请注意,此解决方案可能无法在启用代码/资源压缩的发布版本中工作。
// Get the R.drawable class Class<?> clazz = R.drawable.class; // Get the field for the icon resource Field idField = clazz.getDeclaredField("icon"); // Get the integer ID int id = idField.getInt(null); // Retrieve the string resource String stringResource = resources.getString(id);
组合两种方法
为了获得最大的灵活性,您可以组合这两种方法。将字符串资源名称传递给方法,并在方法中使用首选技术(反射或 getIdentifier())来检索 ID 和字符串。
// Method that accepts the string resource name public void processResource(String resourceName) { // Get the R.drawable class Class<?> clazz = R.drawable.class; try { // Try using reflection to get the ID Field idField = clazz.getDeclaredField(resourceName); int id = idField.getInt(null); // Retrieve the string resource String stringResource = resources.getString(id); } catch (Exception e) { // Fallback to using getIdentifier() int id = resources.getIdentifier(resourceName, "drawable", getPackageName()); String stringResource = resources.getString(id); } // Use the ID and string as needed in your method ... }
以上是如何检索 Android 资源 ID 及其对应的字符串?的详细内容。更多信息请关注PHP中文网其他相关文章!