Skip to content

Instantly share code, notes, and snippets.

@abdulazizahwan
Created February 14, 2020 07:30
Show Gist options
  • Save abdulazizahwan/146d7ef2b591b134543e2078cb1a238f to your computer and use it in GitHub Desktop.
Save abdulazizahwan/146d7ef2b591b134543e2078cb1a238f to your computer and use it in GitHub Desktop.
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:gravity="center"
android:orientation="vertical">
<ImageView
android:id="@+id/img_intro"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="16dp"
android:src="@drawable/travel_page_two" />
<TextView
android:id="@+id/tv_title"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="50dp"
android:fontFamily="@font/ibm_bold"
android:text="Plan Your Trip"
android:textAlignment="center"
android:textColor="@color/colorPrimaryDark"
android:textSize="28sp" />
<TextView
android:id="@+id/tv_description"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="16dp"
android:fontFamily="@font/ibm_regular"
android:text="Choose your destination, plan your trip.\nPick the best place to your holiday"
android:textAlignment="center"
android:textColor="@color/colorPrimaryDark"
android:textSize="16sp" />
</LinearLayout>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment