| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- <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:text="Loading..."
- android:textAppearance="?android:attr/textAppearanceMedium" />
- </LinearLayout>
- <HorizontalScrollView
- android:id="@+id/search_form"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_below="@+id/tv_head" >
- <TableLayout
- android:id="@+id/result_table"
- android:layout_width="wrap_content"
- android:layout_height="fill_parent" >
- <TableRow
- android:id="@+id/tr_header"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content" >
- </TableRow>
- </TableLayout>
- </HorizontalScrollView>
- <TextView
- android:id="@+id/tv_head"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_alignParentTop="true"
- android:layout_centerHorizontal="true"
- android:text="Show count here"
- android:textAppearance="?android:attr/textAppearanceLarge" />
- </RelativeLayout>
|