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

去掉TabLayout,AppBarLayout下的阴影

在使用TabLayout实现顶部黏贴效果时,会发现AppBarLayout下有阴影 ,如下效果:

appBarLayout下阴影

开始还以为是TabLayout在高版本系统上的特殊表现呢,没有在意,后面在测试的时候,老是觉得别扭,后来在网上查了下,原来是在TabLayout放在AppBarLayout里面才有这样的效果,只需要对AppBarLayout设置一个属性:
app:elevation=”0dp”,

值得注意的是: 不是

android:elevation="0dp" 
以下是全部代码
"match_parent"
        android:layout_height="wrap_content"
        app:elevation="0dp">

  "@+id/tab"
       android:layout_width="match_parent"
       android:layout_height="wrap_content">

    

你可能感兴趣的:(android,tablelayout)