IT/- 프로그래밍

안드로이드 TabLayout 밑의 그림자 없애기

혁준7519 2017. 2. 2. 16:13

TabLayout 밑의 그림자 없애기

TabLayout 을 감싸고 있는 AppBarLayout의 속성에 app:elevation="0dp" 속성을 추가한다



ex)

1
2
3
4
5
6
7
8
9
10
11
12
13
14
    <android.support.design.widget.AppBarLayout
        app:elevation="0dp"
        android:layout_width="match_parent"
        android:layout_height="wrap_content">
        <android.support.design.widget.TabLayout
            android:id="@+id/tabs"
            app:tabMode="scrollable"
            app:tabGravity="fill"
            app:tabTextColor="#fff"
            app:tabSelectedTextColor="#fff"
            android:background="#000"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"/>
    </android.support.design.widget.AppBarLayout>
cs