0
点赞
收藏
分享

微信扫一扫

AppBarLayout 折叠之后有阴影?

重写style属性

<android.support.design.widget.AppBarLayout
android:id="@+id/app_bar"
android:layout_width="match_parent"
android:layout_height="240dp"
android:fitsSystemWindows="false"
android:theme="@style/AppTheme.AppBarOverlay">

AppTheme.AppBarOverlay

<style name="AppTheme.AppBarOverlay" parent="ThemeOverlay.AppCompat.Dark.ActionBar">
<item name="elevation">0dp</item><!--去掉toolbar阴影-->
</style>
elevation 改为 0dp



举报

相关推荐

0 条评论