| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576 |
- <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:background="#80808080"
- 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>
- <ScrollView
- android:id="@+id/search_form"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_above="@+id/btn_more"
- android:layout_below="@+id/tv_head" >
- <HorizontalScrollView
- android:id="@+id/horizontalScrollView1"
- android:layout_width="match_parent"
- android:layout_height="match_parent" >
- <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>
- </ScrollView>
- <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=""
- android:textAppearance="?android:attr/textAppearanceLarge" />
- <Button
- android:id="@+id/btn_more"
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- android:layout_alignParentBottom="true"
- android:layout_alignParentLeft="true"
- android:text="Load More" />
- </RelativeLayout>
|