Android 启动页设置非常简单

//styles.xml 设置主题

@drawable/bg_splash

true

//activity使用主题,这时点击app图标,就会显示@drawable/bg_splash图片

android:theme="@style/SplashTheme">

不过这么设置会存在启动页图片被拉伸和压缩的问题,比如

d98bb6c8d2d5ef3044e70602e9463997.png

解决图片变形的问题,可以使用bg_splash.xml文件创建drawable代替图片

//使用layer-list添加多个图层,返回LayerDrawable

//注意:bitmap使用的图片大小要小于屏幕大小

android:bottom="10dp">

android:gravity="bottom"

android:src="@drawable/ic_bg_splash"/>

运行效果图:

688979f949f1c87ce2a229a8c84f9c89.png没有虚拟导航栏eda4d2aafeaefe943da9e1c411c3c52f.png有虚拟导航栏

图片被虚拟导航栏遮住了,  适配:

//android:windowDrawsSystemBarBackgrounds属性是API 21以上的,需要放在values-v21文件夹里

@drawable/bg_splash

true

false

运行效果图:

4a9e42a8ede918e8be42dedc86ab46db.png

Demo下载

Logo

华为开发者空间,是为全球开发者打造的专属开发空间,汇聚了华为优质开发资源及工具,致力于让每一位开发者拥有一台云主机,基于华为根生态开发、创新。

更多推荐