您好我想删除工具栏的下方阴影,因为我使用了提升属性, 目前我的代码是
<android.support.design.widget.CoordinatorLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true">
<android.support.design.widget.AppBarLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@color/transparent">
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
/>
</android.support.design.widget.AppBarLayout>
<FrameLayout
android:id="@+id/content_frame"
android:layout_width="match_parent"
android:layout_height="match_parent" />
</android.support.design.widget.CoordinatorLayout>
,输出为: -
这里我不想要下面的阴影,所以我设置
app:elevation="0dp"
到AppBarLayout, 然后它移除阴影但HamburgerMenu消失了。 新产出如下: -
有人能告诉我如何在不隐藏/消失HamburgerMenu的情况下移除阴影。
答案 0 :(得分:12)
试试这个:
<android.support.design.widget.AppBarLayout
android:id="@+id/appBar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:elevation="0dp">
...
</android.support.design.widget.AppBarLayout>
然后在你的活动中;
findViewById(R.id.appBar).bringToFront();