I've been trying for two days to manage double tabbed layout. Is it possible to do this? Like this ?
Asked
Active
Viewed 1,176 times
1

Mikheil Zhghenti
- 734
- 8
- 28
1 Answers
1
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"/>
See Good tutorial for TabLayout

N J
- 27,217
- 13
- 76
- 96
-
Can you give me more explanation about inner tab ? – Mikheil Zhghenti Feb 15 '16 at 11:24