3

我正在尝试使用这篇文章为 android 应用程序创建启动画面:Splash Screens the Right Way。正如文章所说,我创建了具有两层的 LayerDrawable:背景位图和徽标(也是位图)。例如,徽标需要位于屏幕底部,缩进 32dp。这是我的可绘制对象:

<item
    android:drawable="@drawable/splash_image" />

<item
    android:id="@+id/logo"
    android:bottom="@dimen/margin_splash">

    <bitmap
        android:gravity="bottom|center"
        android:src="@drawable/logo_green" />
</item>

android:windowBackground我在我的启动活动主题中将这个可绘制对象指定为参数。我还希望在支持此功能(API >=19)的设备上显示启动画面时有透明的状态栏,所以我为不同的 android 版本创建了两个资源文件,在 values-v19\styles.xml 中我指出标志android:windowTranslucentStatus为真的。这是我的values/styles.xmlvalues-v19/styles.xml

值/样式.xml

<?xml version="1.0" encoding="utf-8"?>
<resources>
    <style name="SplashTheme" parent="Theme.AppCompat.Light.NoActionBar">
        <item name="android:windowBackground">@drawable/bg_splash</item>
    </style>
</resources>


values-v19/styles.xml

<?xml version="1.0" encoding="utf-8"?>
<resources>
    <style name="SplashTheme" parent="Theme.AppCompat.Light.NoActionBar">
        <item name="android:windowBackground">@drawable/bg_splash</item>
        <item name="android:windowTranslucentStatus">true</item>
    </style>
</resources>

但是在一些带有 Soft NavigationBar 的 Android 设备上,我的标志被它重叠了。 我试图将标志指向错误但没有成功。由 NavigationBar 重叠的徽标
android:windowTranslucentNavigation

有什么方法可以使 Android Soft NavigationBar 与透明状态栏一起透明,或者我需要在我的启动活动的 onCreate 方法中检测 Soft NavigationBar 的可用性,并通过将徽标的底部缩进添加到 NavigationBar 的高度来更新我的 LayerDrawable?

谢谢。

4

2 回答 2

0

我遇到了同样的问题,通过设置以下属性解决了这个问题。

<item name="android:windowDrawsSystemBarBackgrounds">false</item>

此属性设置为 values-v21 目录。

于 2017-04-18T09:44:12.610 回答
0

你试过这个吗?

<item name="android:navigationBarColor">@android:color/transparent</item> <item name="android:windowTranslucentStatus">false</item> <item name="android:windowTranslucentNavigation">false</item>

您也可以在图层可绘制中对位图项目进行一点底部填充。

于 2017-02-26T05:16:56.067 回答