我如何获得我的android应用程序的内部版本号?
这个问题在这里已经有了答案:
简单而简短的方式:实施到您的活动中
String versionName = getApplicationContext().getPackageManager()
.getPackageInfo(getApplicationContext().getPackageName(), 0).versionName;
TextView tv=(TextView)findViewById(R.id.tv);
tv.setText(versionName);
链接地址: http://www.djcxy.com/p/90749.html
上一篇: How can i get the build number of my android app?
下一篇: How to get version info from a shared library into the Android manifest?