Advertisement
moonlightcheese

Untitled

Aug 8th, 2011
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 1.70 KB | None | 0 0
  1. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2.     android:layout_width="fill_parent"
  3.     android:layout_height="fill_parent"
  4.     android:orientation="vertical"
  5.     android:padding="4dip">
  6.     <TextView android:text="VIN:"
  7.         android:layout_width="wrap_content"
  8.         android:layout_height="wrap_content"/>
  9.     <EditText android:id="@+id/vin_in"
  10.         android:layout_width="match_parent"
  11.         android:layout_height="wrap_content"/>
  12.     <TextView android:text="MAKE:"
  13.         android:layout_width="wrap_content"
  14.         android:layout_height="wrap_content"/>
  15.     <Spinner android:id="@+id/make_spn"
  16.         android:layout_width="match_parent"
  17.         android:layout_height="wrap_content"/>
  18.     <TextView android:text="MODEL:"
  19.         android:layout_width="wrap_content"
  20.         android:layout_height="wrap_content"/>
  21.     <Spinner android:id="@+id/model_spn"
  22.         android:layout_width="match_parent"
  23.         android:layout_height="wrap_content"/>
  24.     <TextView android:text="YEAR / TITLE:"
  25.         android:layout_width="wrap_content"
  26.         android:layout_height="wrap_content"/>
  27.     <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  28.         android:layout_width="fill_parent"
  29.         android:layout_height="fill_parent"
  30.         android:orientation="horizontal">
  31.         <Spinner android:id="@+id/year_spn"
  32.             android:layout_width="wrap_content"
  33.             android:layout_height="wrap_content"/>
  34.         <Spinner android:id="@+id/title_spn"
  35.             android:layout_width="wrap_content"
  36.             android:layout_height="wrap_content"/>
  37.     </LinearLayout>
  38.     <TextView android:text="COLOR:"
  39.         android:layout_width="wrap_content"
  40.         android:layout_height="wrap_content"/>
  41.     <Spinner android:id="@+id/color_spn"
  42.         android:layout_width="match_parent"
  43.         android:layout_height="wrap_content"/>
  44. </LinearLayout>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement