I have a tabbedactivity layout, but i need to customize that layout for swipe between 2 activities, like this.
I cant change the background color, just the line indicator. Anyone knows how can i do that?
<android.support.design.widget.AppBarLayout
android:id="@+id/appbarBottom"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="bottom"
android:paddingTop="@dimen/appbar_padding_top"
android:theme="@style/AppTheme.AppBarOverlay">
<android.support.design.widget.TabLayout
android:id="@+id/tabsBottom"
android:layout_width="match_parent"
android:layout_height="wrap_content" />
</android.support.design.widget.AppBarLayout>
thx!