android 獲取APP的唯一標識applicationId的實例
更新時間:2018年02月02日 10:05:44 作者:Tobin-CSDN
下面小編就為大家分享一篇android 獲取APP的唯一標識applicationId的實例,具有很好的參考價值,希望對大家有所幫助。一起跟隨小編過來看看吧
使用getIdentifier()方法可以方便的獲各應用包下的指定資源ID。
方式一
int indentify = getResources().getIdentifier(“com.test.demo:drawable/icon”,null,null);
第一個參數(shù)格式是:包名 + : +資源文件夾名 + / +資源名;是這種格式 然后其他的可以為null
方式二
intindentify= getResources().getIdentifier(“icon”, “drawable”, “com.test.demo”);
第一個參數(shù)為ID名,第二個為資源屬性是ID或者是Drawable,第三個為包名。
示例代碼:
import java.lang.reflect.Field;
import android.content.Context;
public class ResourceUtil {
private static Context sContext;
public static void init(Context context) {
if (context != null)
sContext = context;
}
public static int getLayoutId(String paramString) {
if (sContext == null)
return 0;
return sContext.getResources().getIdentifier(paramString, "layout", sContext.getPackageName());
}
public static int getStringId(String paramString) {
if (sContext == null)
return 0;
return sContext.getResources().getIdentifier(paramString, "string",
sContext.getPackageName());
}
public static int getDrawableId(String paramString) {
if (sContext == null)
return 0;
return sContext.getResources().getIdentifier(paramString, "drawable", sContext.getPackageName());
}
public static int getStyleId(String paramString) {
if (sContext == null)
return 0;
return sContext.getResources().getIdentifier(paramString, "style",
sContext.getPackageName());
}
public static int getId(String paramString) {
if (sContext == null)
return 0;
return sContext.getResources().getIdentifier(paramString, "id",
sContext.getPackageName());
}
public static int getColorId(String paramString) {
if (sContext == null)
return 0;
return sContext.getResources().getIdentifier(paramString, "color", sContext.getPackageName());
}
public static int getDimenId(String paramString) {
if (sContext == null)
return 0;
return sContext.getResources().getIdentifier(paramString, "dimen",
sContext.getPackageName());
}
public static int getAnimId(String paramString) {
if (sContext == null)
return 0;
return sContext.getResources().getIdentifier(paramString, "anim", sContext.getPackageName());
}
// 通過反射實現(xiàn)
public static final int[] getStyleableIntArray(String name) {
try {
if (sContext == null)
return null;
Field field = Class.forName(sContext.getPackageName() + ".R$styleable").getDeclaredField(name);
int[] ret = (int[]) field.get(null);
return ret;
} catch (Throwable t) {
}
return null;
}
public static final int getStyleableIntArrayIndex(String name) {
try {
if (sContext == null)
return 0;
// use reflection to access the resource class
Field field = Class.forName(sContext.getPackageName() + ".R$styleable").getDeclaredField(name);
int ret = (Integer) field.get(null);
return ret;
} catch (Throwable t) {
}
return 0;
}
}
以上這篇android 獲取APP的唯一標識applicationId的實例就是小編分享給大家的全部內容了,希望能給大家一個參考,也希望大家多多支持腳本之家。
相關文章
Android 自定義TextView去除paddingTop和paddingBottom
這篇文章主要介紹了Android 自定義TextView去除paddingTop和paddingBottom的相關資料,這里提供實例來幫助大家實現(xiàn)這樣的功能,需要的朋友可以參考下2017-09-09
Android開發(fā)之TimePicker控件用法實例詳解
這篇文章主要介紹了Android開發(fā)之TimePicker控件用法,結合實例形式詳細分析了Android項目的建立及TimePicker控件的具體使用技巧,需要的朋友可以參考下2016-02-02

