Mikheil Zhghenti
Mikheil Zhghenti

Reputation: 738

Double tabbed layout

I've been trying for two days to manage double tabbed layout. Is it possible to do this? Like this ? enter image description here

Upvotes: 1

Views: 1199

Answers (1)

N J
N J

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"/>

See Good tutorial for TabLayout

Upvotes: 1

Related Questions