Advertisement
Guest User

Untitled

a guest
Oct 27th, 2012
176
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 1.88 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3.    xmlns:app="http://schemas.android.com/apk/res/com.WazaBe.QueFaire"
  4.    android:id="@+id/layout1"
  5.    android:layout_width="fill_parent"
  6.    android:layout_height="fill_parent"
  7.    android:orientation="vertical" >
  8.  
  9.     <View
  10.        android:layout_width="match_parent"
  11.        android:layout_height="0dp"
  12.        android:layout_weight="1" />
  13.  
  14.     <LinearLayout
  15.        android:layout_width="match_parent"
  16.        android:layout_height="wrap_content"
  17.        android:orientation="horizontal" >
  18.  
  19.         <Spinner
  20.            android:id="@+id/spinner1"
  21.            android:layout_width="0dp"
  22.            android:layout_height="wrap_content"
  23.            android:layout_weight="1" />
  24.  
  25.         <Spinner
  26.            android:id="@+id/spinner2"
  27.            android:layout_width="0dp"
  28.            android:layout_height="wrap_content"
  29.            android:layout_weight="1" />
  30.     </LinearLayout>
  31.  
  32.     <View
  33.        android:layout_width="match_parent"
  34.        android:layout_height="0dp"
  35.        android:layout_weight="1" />
  36.  
  37.     <NumberPicker
  38.        android:id="@+id/numberPicker1"
  39.        android:layout_width="match_parent"
  40.        android:layout_height="wrap_content" />
  41.  
  42.     <View
  43.        android:layout_width="match_parent"
  44.        android:layout_height="0dp"
  45.        android:layout_weight="1" />
  46.  
  47.     <Spinner
  48.        android:id="@+id/spinner4"
  49.        android:layout_width="match_parent"
  50.        android:layout_height="wrap_content" />
  51.  
  52.     <View
  53.        android:layout_width="match_parent"
  54.        android:layout_height="0dp"
  55.        android:layout_weight="1" />
  56.  
  57.     <Button
  58.        android:id="@+id/button"
  59.        android:layout_width="match_parent"
  60.        android:layout_height="wrap_content"
  61.        android:text="Recherche" />
  62.  
  63. </LinearLayout>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement