<FrameLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="co.r3labs.wearipedia.SearchFragment"
>
<RelativeLayout
android:layout_gravity="center"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<ImageView
android:id="@+id/search_button"
android:layout_centerHorizontal="true"
android:layout_height="106dp"
android:layout_width="106dp"
android:src="@drawable/search_button_bg"
/>
<ImageView
android:layout_alignTop="@id/search_button"
android:layout_marginTop="23dp"
android:layout_centerHorizontal="true"
android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:src="@drawable/ic_wikipedia_white"
/>
<TextView
android:layout_below="@id/search_button"
android:layout_centerHorizontal="true"
android:layout_marginTop="8dp"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/search"
android:fontFamily="sans-serif-light"
android:textSize="18sp"
/>
</RelativeLayout>
</FrameLayout>