LoginSignup
7
5

More than 5 years have passed since last update.

ToolbarとTabbarの間の影を消す

Last updated at Posted at 2018-03-14

Activityの直下にあるfragmentがTabLayoutをもっていて、Activityのtoolbarとtabbarの境目をなくしたいよねって話になった。

android:elevation="0dp"にしても変わらなかったのでメモ。

        <android.support.design.widget.AppBarLayout
                android:id="@+id/appBarLayout"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:elevation="0dp"
                android:stateListAnimator="@null" ← これが必要
                >

        </android.support.design.widget.AppBarLayout>

参考

7
5
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
7
5