Skip to content

Instantly share code, notes, and snippets.

@Bhavdip
Created July 22, 2016 08:30
Show Gist options
  • Save Bhavdip/99e064b34be95c15b5a8e1a8a2455e1b to your computer and use it in GitHub Desktop.
Save Bhavdip/99e064b34be95c15b5a8e1a8a2455e1b to your computer and use it in GitHub Desktop.
Fragment and View Pager
<?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:id="@+id/first_fragment_root">
<TextView android:layout_height="wrap_content"
android:text="@string/text_first_fragment_title"
android:layout_width="match_parent"
android:gravity="center_horizontal" />
<EditText android:layout_height="wrap_content"
android:layout_width="match_parent"
android:id="@+id/edit_first_msg" />
<Button android:layout_height="wrap_content"
android:layout_gravity="center_horizontal"
android:layout_width="wrap_content"
android:id="@+id/button_first"
android:text="@string/button_first_text" />
</LinearLayout>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment