How can i get the build number of my android app?
本问题已经有最佳答案,请猛点这里访问。
我需要获取我的Android应用程序和setText的内部版本号到textview。 请任何人帮助我,并给予回应。
例如"Build#91"。
提前致谢...
简单而简短的方法:实施您的活动
1 2 3 4 | String versionName = getApplicationContext().getPackageManager() .getPackageInfo(getApplicationContext().getPackageName(), 0).versionName; TextView tv=(TextView)findViewById(R.id.tv); tv.setText(versionName); |