国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 系統 > Android > 正文

android 獲取APP的唯一標識applicationId的實例

2019-12-12 01:11:49
字體:
來源:轉載
供稿:網友

使用getIdentifier()方法可以方便的獲各應用包下的指定資源ID。

方式一

int indentify = getResources().getIdentifier(“com.test.demo:drawable/icon”,null,null);

第一個參數格式是:包名 + : +資源文件夾名 + / +資源名;是這種格式 然后其他的可以為null

方式二

intindentify= getResources().getIdentifier(“icon”, “drawable”, “com.test.demo”);

第一個參數為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());  }  // 通過反射實現  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的實例就是小編分享給大家的全部內容了,希望能給大家一個參考,也希望大家多多支持武林網。

發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 晴隆县| 新化县| 新野县| 泗洪县| 大同县| 建昌县| 射阳县| 丹江口市| 唐山市| 福安市| 嘉义县| 嘉义市| 陕西省| 河源市| 保靖县| 永城市| 教育| 永顺县| 鄄城县| 二手房| 东乡县| 从江县| 温宿县| 新民市| 偏关县| 南城县| 浦城县| 龙门县| 望城县| 江都市| 天祝| 和田县| 芦山县| 华亭县| 马关县| 黑龙江省| 湘乡市| 鄂托克旗| 井陉县| 延吉市| 福贡县|