状态栏将阴影投射到片段工具栏上

时间:2016-02-18 19:32:06

标签: android android-fragments android-toolbar

我将工具栏从我的活动布局移动到片段布局中,现在状态栏将模糊阴影投射到工具栏上(顶部图像),而不是在状态栏停止且工具栏开始的情况下进行清晰描绘(底部图像) )。任何人都知道如何解决这个问题(即阻止状态栏将阴影投射到片段工具栏上)?

enter image description here

的活动:

<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/my_frag"
    android:layout_width="match_parent"
    android:layout_height="match_parent" />

片段:

<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent" >

    <android.support.v7.widget.Toolbar
        app:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"
        android:id="@+id/my_toolbar"
        android:layout_height="wrap_content"
        android:layout_width="match_parent"
        android:minHeight="?attr/actionBarSize" />
</FrameLayout>

Activity将片段添加到my_frag

Fragment使用my_toolbar

调用setSupportActionBar

0 个答案:

没有答案