Skip to content

Commit

Permalink
Fix splash screen logo width
Browse files Browse the repository at this point in the history
Fix splash screen logo width
  • Loading branch information
pulsejet committed Nov 29, 2018
1 parent 56b6d2b commit 2777e7b
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions app/src/main/res/drawable/background.xml
Original file line number Diff line number Diff line change
@@ -1,12 +1,16 @@
<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">

<item android:drawable="@color/colorPrimary" />
<item android:drawable="@color/colorWhite" />

<item>
<bitmap android:src="@drawable/lotus_sq"
android:gravity="center" />
<item
android:width="200dp"
android:height="200dp"
android:gravity="center">

<bitmap
android:src="@drawable/lotus_sq"
android:gravity="fill_horizontal|fill_vertical" />
</item>

</layer-list>

0 comments on commit 2777e7b

Please sign in to comment.