如何获取安卓应用程序版本名称?
本示例演示如何获取安卓应用程序版本名称。
步骤 1 − 在 Android Studio 中创建一个新项目,转至文件 ⇒ 新项目,并填写所有必需信息以创建一个新项目。
步骤 2 − 将以下代码添加到 res/layout/activity_main.xml 中。
<?xml version = "1.0" encoding = "utf-8"?> <LinearLayout xmlns:android = "http://schemas.android.com/apk/res/android" xmlns:app = "http://schemas.android.com/apk/res-auto" xmlns:tools = "http://schemas.android.com/tools" android:layout_width = "match_parent" android:gravity = "center" android:layout_height = "match_parent" tools:context = ".MainActivity" android:orientation = "vertical"> <TextView android:id = "@+id/text" android:textSize = "30sp" android:layout_width = "wrap_content" android:layout_height = "wrap_content" /> </LinearLayout>
在以上代码中,我们已采用文本视图来显示应用程序版本名称。
步骤 3 − 将以下代码添加到 src/MainActivity.java 中
package com.example.myapplication; import android.app.ActivityManager; import android.content.Context; import android.content.pm.PackageInfo; import android.content.pm.PackageManager; import android.os.Build; import android.os.Bundle; import android.support.annotation.RequiresApi; import android.support.v7.app.AppCompatActivity; import android.telephony.TelephonyManager; import android.view.WindowManager; import android.widget.TextView; import java.util.List; public class MainActivity extends AppCompatActivity { TextView textView; @RequiresApi(api = Build.VERSION_CODES.P) @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); getWindow().setFlags(WindowManager.LayoutParams.FLAG_BLUR_BEHIND, WindowManager.LayoutParams.FLAG_BLUR_BEHIND); setContentView(R.layout.activity_main); textView = findViewById(R.id.text); PackageManager pm = getApplicationContext().getPackageManager(); String pkgName = getApplicationContext().getPackageName(); PackageInfo pkgInfo = null; try { pkgInfo = pm.getPackageInfo(pkgName, 0); } catch (PackageManager.NameNotFoundException e) { e.printStackTrace(); } String ver = pkgInfo.versionName; textView.setText("" +ver); } }
让我们尝试运行您的应用程序。我假设您已将真实的安卓移动设备连接到您的计算机。要通过安卓工作室运行应用程序,请打开一个您项目的活动文件并单击工具栏中的运行 图标。将您的移动设备选择为选项,然后检查您的移动设备,它将显示您的默认屏幕 –
单击 此处下载项目代码
广告