按惯例,写在前面的:可能在学习Android的过程中,大家会和我一样,学习过大量的基础知识,很多的知识点也都能说出了123来,但是这些孤立的点终究显得太零散了,因此,我想从今天开始,以最经典的手机安全卫士项目为例,自己锻炼一下,也是想和大家交流交流,希望大家都能给出见解,共同进步
三、splash界面
android:background="@drawable/splash_main_bg"2预览界面去主题
在activity标签下加
android:theme="@android:style/Theme.Black.NoTitleBar"4界面最中间放版本号
<TextView android:shadowColor="#ffffff" android:shadowDx="3" android:shadowDy="3" android:shadowRadius="3" android:id="@+id/tv_splash_version" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_centerHorizontal="true" android:layout_centerVertical="true" android:textColor="#000000" android:textSize="16sp" android:text="版本号:"/>
<ProgressBar android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_centerHorizontal="true" android:layout_below="@id/tv_splash_version"/>
5.我们现在需要改变版本号中的内容
版本号是在清单文件中设置的,我们要定义一个方法,获取清单文件中的版本号。private String getVersion() { try { PackageManager pm = getPackageManager(); PackageInfo packInfo = pm.getPackageInfo(getPackageName(), 0); return packInfo.versionName; } catch (NameNotFoundException e) { e.printStackTrace(); //cannot reach return ""; } }
tv_splash_version.setText("版本号:"+getVersion());