引用:http://my.eoe.cn/blue_rain/archive/552.htmlhtml
有的時候咱們生成庫文件,須要在裏面加入一些UI,並提供出一些xml的資源,那如何在其餘項目中使用呢?java
咱們只須要在須要生成庫文件的代碼中不要直接是用R. ,而是使用本身寫的方法獲取。android
下面上代碼:this
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文件中,使用spa
1 2 |
View view = getLayoutInflater().inflate(ResUtil.getResofR(this).getLayout("activity_main"), null);
set
|