TabLayout与AppBarLayout一块使用时,去掉中间的一条阴影。

最近在使用AppBarLayout和TabLayout布局,发现一块使用时,中间有一条阴影,我们只需要给AppBarLayout设置一个属性就可以完美解决了。app:elevation=”0dp”


    android:layout_width="match_parent"

    android:layout_height="wrap_content"

    android:theme="@style/AppTheme.AppBarOverlay"

    app:elevation="0dp">

    android:id="@+id/tablayout"

     android:layout_width="match_parent"

     android:layout_height ="wrap_content">

你可能感兴趣的:(TabLayout与AppBarLayout一块使用时,去掉中间的一条阴影。)