Skip to content

Instantly share code, notes, and snippets.

@ccjeng
Created December 28, 2015 02:29
Show Gist options
  • Save ccjeng/be1c38ad87977112bb34 to your computer and use it in GitHub Desktop.
Save ccjeng/be1c38ad87977112bb34 to your computer and use it in GitHub Desktop.
Android TabLayout Layout
<linearlayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<android.support.design.widget.TabLayout
android:id="@+id/tabs"
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:tabMode="fixed" />
<android.support.v4.view.ViewPager
android:id="@+id/pager"
android:layout_width="match_parent"
android:layout_height="0px"
android:layout_weight="1"
android:background="@android:color/white" />
</LinearLayout>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment