溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

Android 獲取應(yīng)用程序版本號(hào)

發(fā)布時(shí)間:2020-10-09 15:07:31 來(lái)源:網(wǎng)絡(luò) 閱讀:1274 作者:FergusJ 欄目:移動(dòng)開(kāi)發(fā)

功能:獲取版本號(hào)

思路:版本號(hào)位置在AndroidManifest.xml文件中,需要找到一個(gè)類可以獲取該位置的信息


需要使用到getPackageInfo和 PackageManager 這兩個(gè)類。

一、getPackageInfo介紹和用法

介紹:PackageInfo類封裝了從配置文件(AndroidManifest.xml)中獲取的所有信息,描述了包內(nèi)容的整體信息。

Overall information about the contents of a package. This corresponds to all of the information collected from AndroidManifest.xml.



二、PackageManager介紹和用法

介紹:PackageManager是一個(gè)檢索當(dāng)前已安裝在設(shè)備上的相關(guān)應(yīng)用程序包的各種信息的類。

Class for retrieving various kinds of information related to the application packages that are currently installed on the device. You can find this class through Context.getPackageManager


使用方法:

1.PackageManager對(duì)象的獲取,Context對(duì)象提供了getPackageManager()方法。

2.getPackageInfo方法獲取PackageInfo對(duì)象,該方法需要傳遞兩個(gè)參數(shù):應(yīng)用包名packageName 和條件flags

  • packageName :The full name (i.e. com.google.apps.contacts) of the desired package.

  • flags: Additional option flags. Use any combination of GET_ACTIVITIES, GET_GIDS, GET_CONFIGURATIONS, GET_INSTRUMENTATION, GET_PERMISSIONS, GET_PROVIDERS, GET_RECEIVERS, GET_SERVICES, GET_SIGNATURES, GET_UNINSTALLED_PACKAGES to modify the data returned.


代碼書(shū)寫流程:

  1. 使用Context.getPackageManager獲取PackageManager對(duì)象

  2. 使用PackageManager對(duì)象的getPackageInfo方法獲取PackageInfo對(duì)象

  3. 獲取PackageInfo的屬性versionCode 或者其他信息


    /**
     * 獲取版本號(hào)
     * 
     * @return 當(dāng)前應(yīng)用的版本名
     */
    public int getVersion() {
	try {
	    PackageManager manager = this.getPackageManager();
	    PackageInfo info = manager.getPackageInfo(this.getPackageName(), 0);
	    String version = info.versionName;//版本的名稱 用于顯示在welcome界面下角
	    int versionCode = info.versionCode;//版本的code 用于比較升級(jí)
	    return versionCode;
	} catch (Exception e) {
	    e.printStackTrace();
	    return 0;
	}
    }


參考文章:

http://www.cnblogs.com/yeahui/archive/2012/10/20/2732429.html



向AI問(wèn)一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI