launch_screen.xml 478B

1234567891011121314
  1. <layer-list xmlns:android="http://schemas.android.com/apk/res/android"
  2. android:opacity="opaque">
  3. <!-- The background color, preferably the same as your normal theme -->
  4. <item android:drawable="@color/black"/>
  5. <!-- Your product logo - 144dp color version of your app icon -->
  6. <item
  7. android:drawable="@mipmap/ic_launcher"
  8. android:gravity="center"
  9. android:height="144dp"
  10. android:width="144dp"
  11. >
  12. </item>
  13. </layer-list>