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

首頁 > 系統 > Android > 正文

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

2019-10-22 18:15:46
字體:
來源:轉載
供稿:網友

使用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的實例就是小編分享給大家的全部內容了,希望能給大家一個參考,也希望大家多多支持VEVB武林網。


注:相關教程知識閱讀請移步到Android開發頻道。
發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 永定县| 肃北| 米脂县| 富阳市| 吉木萨尔县| 盐池县| 恭城| 堆龙德庆县| 溧阳市| 云和县| 德令哈市| 新河县| 铜梁县| 调兵山市| 陵川县| 连城县| 海伦市| 郁南县| 德阳市| 惠水县| 绵阳市| 新津县| 乌鲁木齐县| 双鸭山市| 盘山县| 景洪市| 富阳市| 荣成市| 张掖市| 东至县| 郁南县| 双流县| 神木县| 黄平县| 车险| 房产| 浮山县| 裕民县| 西林县| 望江县| 全州县|