嗨我想删除工具栏的下方阴影,因为我使用了提升属性,
目前我的代码是
目前我的代码是
<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的情况下移除阴影.
解决方法
试试这个:
<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();