去除使用CoordinatorLayout 和 AppBarLayout布局,上滑到顶部时的阴影
<android.support.design.widget.CoordinatorLayout
android:layout_width="match_parent"
android:layout_height="match_parent">
<android.support.design.widget.AppBarLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:elevation="0dp"
android:theme="@style/AppTheme.AppBarOverlay">
</android.support.design.widget.AppBarLayout>
</android.support.design.widget.CoordinatorLayout>
只需要在布局的AppBarLayout中加入app:elevation="0dp"
下面2张图分别是加上前和加上后的效果图: