通过代码获取res里生成R.java中的值
引用:http://my.eoe.cn/blue_rain/archive/552.html
有的时候我们生成库文件,需要在里面加入一些UI,并提供出一些xml的资源,那如何在其他项目中使用呢?
我们只需要在需要生成库文件的代码中不要直接是用R. ,而是使用自己写的方法获取。
下面上代码:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 |
import java.lang.reflect.Field;
import android.content.Context;
import android.util.Log;
public class ResUtil {
private static final String TAG = ResUtil.class.getName();
private static ResUtil instance;
private Context context;
private static Class id= null;
private static Class drawable = null;
private static Class layout = null;
private static Class anim = null;
private static Class style = null;
private static Class string = null;
private static Class array = null;
private ResUtil(Context paramContext)
{
this.context = paramContext.getApplicationContext();
try
{
drawable = Class.forName(this.context.getPackageName() + ".R$drawable");
}
catch (ClassNotFoundException localClassNotFoundException1)
{
Log.i(TAG, localClassNotFoundException1.getMessage());
}
try
{
layout = Class.forName(this.context.getPackageName() + ".R$layout");
}
catch (ClassNotFoundException localClassNotFoundException2)
{
Log.i(TAG, localClassNotFoundException2.getMessage());
}
try
{
id = Class.forName(this.context.getPackageName() + ".R$id");
}
catch (ClassNotFoundException localClassNotFoundException3)
{
Log.i(TAG, localClassNotFoundException3.getMessage());
}
try
{
anim = Class.forName(this.context.getPackageName() + ".R$anim");
}
catch (ClassNotFoundException localClassNotFoundException4)
{
Log.i(TAG, localClassNotFoundException4.getMessage());
}
try
{
style = Class.forName(this.context.getPackageName() + ".R$style");
}
catch (ClassNotFoundException localClassNotFoundException5)
{
Log.d(TAG, localClassNotFoundException5.getMessage());
}
try
{
string = Class.forName(this.context.getPackageName() + ".R$string");
}
catch (ClassNotFoundException localClassNotFoundException6)
{
Log.d(TAG, localClassNotFoundException6.getMessage());
}
try
{
array = Class.forName(this.context.getPackageName() + ".R$array");
}
catch (ClassNotFoundException localClassNotFoundException7)
{
Log.d(TAG, localClassNotFoundException7.getMessage());
}
}
public static ResUtil getResofR(Context paramContext)
{
if (instance == null)
instance = new ResUtil(paramContext);
return instance;
}
public int getAnim(String paramString)
{
return getResofR(anim, paramString);
}
public int getId(String paramString)
{
return getResofR(id, paramString);
}
public int getDrawable(String paramString)
{
return getResofR(drawable, paramString);
}
public int getLayout(String paramString)
{
return getResofR(layout, paramString);
}
public int getStyle(String paramString)
{
return getResofR(style, paramString);
}
public int getString(String paramString)
{
return getResofR(string, paramString);
}
public int getArray(String paramString)
{
return getResofR(array, paramString);
}
private int getResofR(Class<?> paramClass, String paramString)
{
if (paramClass == null)
{
Log.d(TAG, "getRes(null," + paramString + ")");
throw new IllegalArgumentException("ResClass is not initialized.");
}
try
{
Field localField = paramClass.getField(paramString);
int k = localField.getInt(paramString);
return k;
}
catch (Exception localException)
{
Log.d(TAG, "getRes(" + paramClass.getName() + ", " + paramString + ")");
Log.d(TAG, "Error getting resource. Make sure you have copied all resources (res/) from SDK to your project. ");
Log.d(TAG, localException.getMessage());
}
return -1;
}
}
|
使用方法:在要生成库文件的Java文件中,使用
1 2 |
View view = getLayoutInflater().inflate(ResUtil.getResofR(this).getLayout("activity_main"), null);
set
|
【推荐】国内首个AI IDE,深度理解中文开发场景,立即下载体验Trae
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】抖音旗下AI助手豆包,你的智能百科全书,全免费不限次数
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步
· 10年+ .NET Coder 心语,封装的思维:从隐藏、稳定开始理解其本质意义
· .NET Core 中如何实现缓存的预热?
· 从 HTTP 原因短语缺失研究 HTTP/2 和 HTTP/3 的设计差异
· AI与.NET技术实操系列:向量存储与相似性搜索在 .NET 中的实现
· 基于Microsoft.Extensions.AI核心库实现RAG应用
· 10年+ .NET Coder 心语 ── 封装的思维:从隐藏、稳定开始理解其本质意义
· 地球OL攻略 —— 某应届生求职总结
· 提示词工程——AI应用必不可少的技术
· Open-Sora 2.0 重磅开源!
· 字符编码:从基础到乱码解决
2012-07-03 svn 官方下载
2012-07-03 本地svn
2012-07-03 svn and googel code
2012-07-03 eclipse 安装插件 link方式
2012-07-03 svn
2012-07-03 vs2008 使用技巧