Skip to content

Instantly share code, notes, and snippets.

@kunmi
Created January 1, 2018 22:52
Show Gist options
  • Save kunmi/c01cb77638e70492ae887a911898d5b9 to your computer and use it in GitHub Desktop.
Save kunmi/c01cb77638e70492ae887a911898d5b9 to your computer and use it in GitHub Desktop.
Code snippet for kunmii.blogspot.com Creating Dialog with Tabs : Android
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical" android:layout_width="match_parent"
android:layout_height="match_parent">
<android.support.design.widget.TabLayout
android:id="@+id/tabLayout"
android:layout_width="match_parent"
android:layout_height="wrap_content"
/>
<android.support.v4.view.ViewPager
android:id="@+id/masterViewPager"
android:layout_width="match_parent"
android:layout_height="match_parent"
/>
</LinearLayout>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment