37Android去除AppBarLayout阴影
Posted 清风百草
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了37Android去除AppBarLayout阴影相关的知识,希望对你有一定的参考价值。
<android.support.design.widget.AppBarLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:elevation="@dimen/dp0"
android:fadingEdge="none"
>
</android.support.design.widget.AppBarLayout>
(1)app:elevation="@dimen/dp0"
(2)最近用CoordinatorLayout时,发现AppBarLayout总是带个阴影(很不爽),咱们项目UI设计图又没有阴影,因一时找不到怎么去除找了很久才在网上找到解决方法,所以在这里再次记录下,以便遇到相同问题的人能及时解决问题。
(3)注意红色部分的代码写法,不要写成android:elevation,否则不起作用的。
以上是关于37Android去除AppBarLayout阴影的主要内容,如果未能解决你的问题,请参考以下文章