| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394 |
- <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" >
- <RelativeLayout
- android:id="@+id/status"
- android:layout_width="fill_parent"
- android:layout_height="fill_parent"
- android:layout_centerInParent="true"
- android:layout_gravity="center"
- android:background="#80808080"
- android:orientation="vertical"
- android:visibility="gone" >
- <TextView
- android:id="@+id/status_message"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_below="@+id/progressbar"
- android:layout_centerHorizontal="true"
- android:layout_marginBottom="16dp"
- android:text="Loading..."
- android:textAppearance="?android:attr/textAppearanceMedium" />
- <ProgressBar
- android:id="@+id/progressbar"
- style="?android:attr/progressBarStyleLarge"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_centerInParent="true"
- android:layout_marginTop="41dp" />
- </RelativeLayout>
- <ScrollView
- android:id="@+id/scrollView1"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_above="@+id/foot"
- android:layout_below="@+id/head" >
- <HorizontalScrollView
- android:id="@+id/search_form"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content" >
- <TableLayout
- android:id="@+id/result_table"
- android:layout_width="wrap_content"
- android:layout_height="fill_parent"
- android:padding="2dp"
- android:background="#80808080" >
- <TableRow
- android:id="@+id/tr_header"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content" >
- </TableRow>
- </TableLayout>
- </HorizontalScrollView>
- </ScrollView>
- <LinearLayout
- android:id="@+id/foot"
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- android:layout_alignParentBottom="true" >
- <Button
- android:id="@+id/btn_pre"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_weight="1"
- android:text="Pre Page" />
- <Button
- android:id="@+id/btn_next"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_weight="1"
- android:text="Next Page" />
- </LinearLayout>
- <TextView
- android:id="@+id/head"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_alignParentTop="true"
- android:layout_centerHorizontal="true"
- android:text="aaa"
- android:textAppearance="?android:attr/textAppearanceLarge" />
- </RelativeLayout>
|