Reputation: 738
I've been trying for two days to manage double tabbed layout. Is it possible to do this? Like this ?
Upvotes: 1
Views: 1199
Reputation: 27545
You can do that by using android.support.design.widget.TabLayout
Top Tab make it fixed like
<android.support.design.widget.TabLayout
android:id="@+id/tabs"
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:tabMode="fixed"
app:tabGravity="fill"/>
and inner tab
<android.support.design.widget.TabLayout
android:id="@+id/tabs"
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:tabMode="scrollable"
app:tabGravity="fill"/>
Upvotes: 1