2014-04-19 05:09:09 -04:00
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
|
|
android:id="@+id/container"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:orientation="vertical"
|
|
|
|
tools:context="edu.uncc.scavenger.CompassActivity"
|
|
|
|
tools:ignore="MergeRootFrame" >
|
|
|
|
|
|
|
|
<RelativeLayout
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_weight="1" >
|
|
|
|
|
|
|
|
<ImageView
|
|
|
|
android:id="@+id/arrowView"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="fill_parent"
|
|
|
|
android:layout_centerHorizontal="true"
|
|
|
|
android:layout_centerVertical="true"
|
|
|
|
android:layout_weight="1"
|
|
|
|
android:src="@drawable/arrow_up" />
|
|
|
|
|
2014-04-19 23:02:52 -04:00
|
|
|
<ImageView
|
|
|
|
android:id="@+id/searchImageView"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_centerHorizontal="true"
|
|
|
|
android:layout_centerVertical="true"
|
|
|
|
android:src="@drawable/ic_launcher" />
|
|
|
|
|
2014-04-19 05:09:09 -04:00
|
|
|
</RelativeLayout>
|
|
|
|
|
|
|
|
<Button
|
|
|
|
android:id="@+id/backButton"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_weight="0"
|
|
|
|
android:text="@string/back_button_text" />
|
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|