Quantcast
Channel: 簡睿隨筆
Viewing all articles
Browse latest Browse all 897

[Android Studio #11] 取出設定好的App版本號碼

$
0
0

本文示範Android Studio設定App版本的方法。首先由功能表【File】→【Project Structure…】開啟專案設定對話窗。在【Version Name】欄位輸入版本號碼。

version

步驟2. 在MainActivity.java的onCreate裡取出設定好的版本號碼。

    String _sVersion = "1.0";
    try {
      PackageInfo pInfo = this.getPackageManager().getPackageInfo(activity.getPackageName(), 0);
      _sVersion = pInfo.versionName;
    } catch (PackageManager.NameNotFoundException e) {
      e.printStackTrace();
    }
    TextView txtCaption = (TextView) this.findViewById(R.id.txtCaption);
    txtCaption.setText(txtCaption.getText() + " V" + _sVersion);

##

您可能也會有興趣的類似文章


Viewing all articles
Browse latest Browse all 897

Trending Articles