Advertisement
ziedrebhi

activity_edit_supp.xml

Apr 19th, 2014
286
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 3.05 KB | None | 0 0
  1. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2.    xmlns:tools="http://schemas.android.com/tools"
  3.    android:id="@+id/LinearLayout1"
  4.    android:layout_width="fill_parent"
  5.    android:layout_height="fill_parent"
  6.    android:orientation="vertical"
  7.     >
  8.  
  9.      <TextView
  10.         android:id="@+id/textView"
  11.         android:layout_width="match_parent"
  12.         android:layout_height="wrap_content"
  13.         android:layout_margin="15dp"
  14.         android:gravity="center_horizontal"
  15.         android:padding="8dp"
  16.         android:text=" Editer / Supprimer "
  17.         android:textAppearance="?android:attr/textAppearanceLarge" />
  18.    
  19.  <View
  20.        android:layout_width="match_parent"
  21.        android:layout_height="10dp"
  22.         />
  23.     <EditText
  24.        android:id="@+id/col1"
  25.        android:layout_width="match_parent"
  26.        android:layout_height="wrap_content"
  27.        android:ems="10"
  28.        
  29.        android:hint="valeur col1">
  30.  
  31.  
  32.     </EditText> <View
  33.        android:layout_width="match_parent"
  34.        android:layout_height="10dp"
  35.         />
  36.     <EditText
  37.        android:id="@+id/col2"
  38.        android:layout_width="match_parent"
  39.        android:layout_height="wrap_content"
  40.        android:ems="10"
  41.        android:hint="valeur col2">
  42.  
  43.  
  44.     </EditText>
  45.  <View
  46.        android:layout_width="match_parent"
  47.        android:layout_height="10dp"
  48.         />
  49.     <EditText
  50.        android:id="@+id/col3"
  51.        android:layout_width="match_parent"
  52.        android:layout_height="wrap_content"
  53.        android:ems="10"
  54.        android:hint="valeur col3"/>
  55.  <View
  56.        android:layout_width="match_parent"
  57.        android:layout_height="10dp"
  58.         />
  59.     <EditText
  60.        android:id="@+id/col4"
  61.        android:layout_width="match_parent"
  62.        android:layout_height="wrap_content"
  63.        android:ems="10"
  64.        android:hint="valeur col4" />
  65.  <View
  66.        android:layout_width="match_parent"
  67.        android:layout_height="20dp"
  68.         />
  69.     <LinearLayout
  70.        android:layout_width="match_parent"
  71.        android:layout_height="wrap_content"
  72.        android:layout_gravity="center" >
  73.  
  74.         <Button
  75.            android:id="@+id/editer"
  76.            android:layout_width="0dp"
  77.            android:layout_height="wrap_content"
  78.            android:layout_gravity="center_horizontal"
  79.            android:layout_weight="1"
  80.            android:text="Editer"
  81.            />
  82.  
  83.         <Button
  84.            android:id="@+id/edit"
  85.            android:layout_width="0dp"
  86.            android:layout_height="wrap_content"
  87.            android:layout_gravity="center"
  88.            android:layout_weight="1"
  89.            android:text="Enregistrer"
  90.             />
  91.     </LinearLayout>
  92.  
  93.     <Button
  94.        android:id="@+id/supp"
  95.        android:layout_width="match_parent"
  96.        android:layout_height="wrap_content"
  97.        android:text="Supprimer"
  98.         />
  99.  
  100.  <View
  101.        android:layout_width="match_parent"
  102.        android:layout_height="30dp"
  103.         />
  104.  
  105. </LinearLayout>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement