Archived
19 lines
740 B
XML
19 lines
740 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<!-- The android:opacity=”opaque” line — this is critical in preventing a flash of black as your theme transitions. -->
|
|
<layer-list xmlns:android="http://schemas.android.com/apk/res/android" android:opacity="opaque">
|
|
|
|
<!-- The background color, preferably the same as your normal theme -->
|
|
<item android:drawable="?attr/colorAccent"/>
|
|
|
|
<!-- Your product logo - 144dp color version of your app icon -->
|
|
<!--<item>-->
|
|
<!--<bitmap android:src="@drawable/ic_avh"-->
|
|
<!--android:gravity="center"/>-->
|
|
<!--</item>-->
|
|
<item android:drawable="@drawable/ic_avhlogo"
|
|
android:gravity="center"
|
|
android:scaleType="centerInside">
|
|
</item>
|
|
|
|
</layer-list> |