去掉TabLayout下的阴影,AppBarLayout下的阴影

本文链接:http://blog.csdn.net/dreamsever/article/details/52672739

有时候我们发现TabLayout的下面有阴影,效果如下:
这里写图片描述

开始还以为是TabLayout在高版本系统上的特殊表现呢,没有在意,UI提出说感觉不好看就查了一下,原来是在TabLayout放在AppBarLayout里面才有这样的效果,只需要对AppBarLayout设置一个属性:
app:elevation=”0dp”

.support.design.widget.AppBarLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        app:elevation="0dp">

  .support.design.widget.TabLayout
       android:id="@+id/tab"
       android:layout_width="match_parent"
       android:layout_height="wrap_content">

   .support.design.widget.TabLayout>.support.design.widget.AppBarLayout>

注意:不要写成android:elevation=”0dp”,而是 app:elevation=”0dp”

你可能感兴趣的:(Android基础)