Advertisement
moonlightcheese

Untitled

Jul 19th, 2011
170
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 2.05 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:id="@+id/root_view"
  4.    android:orientation="vertical"
  5.    android:layout_width="fill_parent"
  6.    android:layout_height="fill_parent">
  7.     <TableLayout
  8.         android:layout_width="wrap_content"
  9.         android:layout_height="wrap_content"
  10.         android:stretchColumns="2"
  11.         android:background="#DDDDDD"
  12.         android:padding="@dimen/ship_header_padding">
  13.         <TableRow>
  14.             <TextView
  15.                 android:layout_column="1"
  16.                 android:text="Target: "
  17.                 android:gravity="right"
  18.                 android:textColor="#111111"
  19.                 android:textSize="@dimen/ship_header_txt_sz"/>
  20.             <TextView
  21.                 android:layout_column="2"
  22.                 android:textColor="#111111"
  23.                 android:id="@+id/target_weight"
  24.                 android:textSize="@dimen/ship_header_txt_sz"/>
  25.             <TextView
  26.                 android:layout_column="3"
  27.                 android:textColor="#111111"
  28.                 android:text="Remaining: "
  29.                 android:gravity="right"
  30.                 android:textSize="@dimen/ship_header_txt_sz"/>
  31.             <TextView
  32.                 android:layout_column="4"
  33.                 android:textColor="#111111"
  34.                 android:id="@+id/remaining_weight"
  35.                 android:textSize="@dimen/ship_header_txt_sz"/>
  36.         </TableRow>
  37.         <TableRow>
  38.             <TextView
  39.                 android:layout_column="1"
  40.                 android:text="Gross: "
  41.                 android:gravity="right"
  42.                 android:textColor="#111111"
  43.                 android:textSize="@dimen/ship_header_txt_sz"/>
  44.             <TextView
  45.                 android:layout_column="2"
  46.                 android:id="@+id/gross_weight"
  47.                 android:textColor="#111111"
  48.                 android:textSize="@dimen/ship_header_txt_sz"/>
  49.             <TextView
  50.                 android:layout_column="3"
  51.                 android:text="Net: "
  52.                 android:gravity="right"
  53.                 android:textColor="#111111"
  54.                 android:textSize="@dimen/ship_header_txt_sz"/>
  55.             <TextView
  56.                 android:layout_column="4"
  57.                 android:id="@+id/net_weight"
  58.                 android:textColor="#111111"
  59.                 android:textSize="@dimen/ship_header_txt_sz"/>
  60.         </TableRow>
  61.     </TableLayout>
  62.     <ListView
  63.         android:id="@+id/kit_list"
  64.         android:layout_height="fill_parent"
  65.         android:layout_width="fill_parent"/>
  66. </LinearLayout>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement