Advertisement
sandywicaksono

Untitled

Jun 25th, 2014
182
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 1.01 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3.     android:layout_width="match_parent"
  4.     android:layout_height="match_parent"
  5.     android:orientation="vertical" >
  6.  
  7.     <Button
  8.         android:id="@+id/load_data"
  9.         android:layout_width="match_parent"
  10.         android:layout_height="wrap_content"
  11.         android:text="Load Data" />
  12.  
  13.     <ScrollView
  14.         android:id="@+id/scrollView1"
  15.         android:layout_width="fill_parent"
  16.         android:layout_height="fill_parent" >
  17.  
  18.         <HorizontalScrollView
  19.             android:id="@+id/horizontalScrollView1"
  20.             android:layout_width="fill_parent"
  21.             android:layout_height="fill_parent" >
  22.  
  23.             <TableLayout
  24.                 android:id="@+id/tabeldata"
  25.                 android:layout_width="fill_parent"
  26.                 android:layout_height="fill_parent" >
  27.  
  28.             </TableLayout>
  29.  
  30.         </HorizontalScrollView>
  31.  
  32.     </ScrollView>
  33.  
  34. </LinearLayout>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement