mirror of
https://github.com/bspeice/itcs4180
synced 2024-11-14 11:28:14 -05:00
34 lines
1.1 KiB
XML
34 lines
1.1 KiB
XML
<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"
|
|
android:layout_margin="5dp"
|
|
android:text="@string/found_text"
|
|
android:textAppearance="?android:attr/textAppearanceLarge" />
|
|
|
|
<WebView
|
|
android:id="@+id/moreInfoWebView"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:layout_weight="1" />
|
|
|
|
<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>
|
|
|