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.FoundActivity"
|
|
|
|
tools:ignore="MergeRootFrame" >
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/foundText"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="center_horizontal"
|
2014-04-26 11:05:06 -04:00
|
|
|
android:layout_margin="5dp"
|
2014-04-19 05:09:09 -04:00
|
|
|
android:text="@string/found_text"
|
|
|
|
android:textAppearance="?android:attr/textAppearanceLarge" />
|
|
|
|
|
2014-04-25 21:39:50 -04:00
|
|
|
<WebView
|
|
|
|
android:id="@+id/moreInfoWebView"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:layout_weight="1" />
|
2014-04-19 05:09:09 -04:00
|
|
|
|
|
|
|
<Button
|
|
|
|
android:id="@+id/tryMoreButton"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="center_horizontal"
|
|
|
|
android:text="@string/try_more_button" />
|
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|