0

ステータス バー をそれぞれ透明することに問題があります。AppCompat v22テーマを使用しています。API >=19 にwindowTranslucentStatusを使用したい。私は本当にstackoverflowで答えを探しましたが、問題の解決策を見つけることができませんでした. 最も簡単な方法は、アプリをテストしたスマートフォンのコードとスクリーンショットを表示することだと思います。

<RelativeLayout
           android:id="@+id/activitylayout"
           android:fitsSystemWindows="true"
           android:layout_width="fill_parent"
           android:layout_height="fill_parent">

アクティビティ レイアウトのコードの上。

<style name="AppTheme" parent="Theme.AppCompat.Light.NoActionBar">

    <item name="colorPrimary">@color/primary</item>
    <item name="colorPrimaryDark">@color/primary_dark</item>
    <item name="colorAccent">@color/accent</item>
    <item name="drawerArrowStyle">@style/drawerarrowstyle1</item>
    <item name="android:windowTranslucentStatus">true</item>
    <item name="android:fitsSystemWindows">true</item>

私の style.xml(v19) コード。 問題: ステータス バーの背景が白く、ナビゲーション ドロワーに表示されません。

アクティビティ レイアウトのステータス バーのスクリーンショット

ナビゲーション ドロワーのステータス バーのスクリーンショット

4

1 に答える 1