像谷歌一样的启动画面

时间:2016-11-03 11:13:13

标签: android splash-screen app-startup

我想使用layer-list创建像google splash screen(下面附带的图片)一样的启动画面。我试过但是在不同设备上的UI表现不同。 这是我的代码

<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:id="@+id/item_bottom_stroke" >
        <shape android:shape="rectangle">
            <solid android:color="#FFFFFF"/>
        </shape>
    </item>
    <!-- Your product logo - 144dp color version of your app icon -->
    <item>
        <bitmap android:gravity="center"
            android:src="@drawable/web_hi_res_512" />
    </item>
    <item android:gravity="bottom">
        <bitmap android:gravity="bottom"
            android:src="@drawable/launcher_text2" />
    </item>
</layer-list>

在不同的设备上,用户界面看起来像是谷歌应用程序吗?

material design reference

enter image description here

1 个答案:

答案 0 :(得分:0)

你的意思是“launcher_text2”图片,rt?使用空间填充在大约底部附近添加此图像(底部工具栏+您想要的边距)

Something like this并再次检查