Last active
December 17, 2016 07:57
-
-
Save Eklett/6ef97a14b6929bd562886b537dc86c4c to your computer and use it in GitHub Desktop.
修改app启动白屏或黑屏的方法,改为application的AppBaseTheme设置android:windowBackground属性.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="utf-8"?> | |
<layer-list xmlns:android="http://schemas.android.com/apk/res/android" > | |
<!-- 设置整个屏幕背景为白色 --> | |
<item > | |
<color android:color="@color/white"/> | |
</item> | |
<!-- 中间logo --> | |
<item > | |
<bitmap | |
android:gravity="center" | |
android:src="@drawable/ic_launcher" /> | |
</item> | |
<!-- 底部图表 --> | |
<item android:bottom="10dp"> | |
<bitmap | |
android:gravity="bottom|center_horizontal" | |
android:src="@drawable/copyright" /> | |
</item> | |
</layer-list> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment