| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- <RelativeLayout 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=".ResultActivity" >
- <LinearLayout
- android:id="@+id/status"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_centerInParent="true"
- android:layout_gravity="center"
- android:gravity="center_horizontal"
- android:orientation="vertical"
- android:visibility="gone" >
- <ProgressBar
- style="?android:attr/progressBarStyleLarge"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_marginBottom="8dp" />
- <TextView
- android:id="@+id/status_message"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_marginBottom="16dp"
- android:fontFamily="sans-serif-light"
- android:text="Loading..."
- android:textAppearance="?android:attr/textAppearanceMedium" />
- </LinearLayout>
- <HorizontalScrollView
- android:id="@+id/search_form"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content" >
- <TableLayout
- android:layout_width="wrap_content"
- android:layout_height="fill_parent" >
- <TableRow
- android:id="@+id/tr_count"
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- android:gravity="center_horizontal" >
- <TextView
- android:id="@+id/textView1"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:text="Large Text"
- android:textAppearance="?android:attr/textAppearanceLarge" />
- </TableRow>
- <TableRow
- android:id="@+id/tr_header"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content" >
- </TableRow>
- </TableLayout>
- </HorizontalScrollView>
- </RelativeLayout>
|