Blame view

PremiereActivite/app/src/main/res/layout-v23/layout_commande.xml 2.22 KB
c8059613   JLo'w   Re-fonte de l'app...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
  <?xml version="1.0" encoding="utf-8"?>
  <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
      android:orientation="vertical" android:layout_width="match_parent"
      android:layout_height="match_parent"
      android:baselineAligned="false"
      android:weightSum="1"
      android:nestedScrollingEnabled="true">
  
  
      <EditText
          android:layout_width="wrap_content"
          android:layout_height="wrap_content"
          android:inputType="number"
          android:ems="15"
520cecde   JLo'w   Un petit plus, un...
15
          android:id="@+id/commande_quantite"
c8059613   JLo'w   Re-fonte de l'app...
16
17
18
          android:editable="true"
          android:elegantTextHeight="true"
          android:enabled="true"
c8059613   JLo'w   Re-fonte de l'app...
19
20
21
22
23
24
          android:numeric="integer"
          android:width="300dp"
          android:hint="@string/quant"
          android:textAlignment="center"
          android:layout_gravity="center_horizontal"
          android:layout_marginTop="30dp"
c8059613   JLo'w   Re-fonte de l'app...
25
          android:height="150dp"
520cecde   JLo'w   Un petit plus, un...
26
          android:minHeight="50dp"
c8059613   JLo'w   Re-fonte de l'app...
27
28
          android:maxHeight="500dp"
          android:minWidth="120dp"
520cecde   JLo'w   Un petit plus, un...
29
          android:textIsSelectable="true" />
c8059613   JLo'w   Re-fonte de l'app...
30
31
32
  
      <EditText
          android:layout_width="wrap_content"
520cecde   JLo'w   Un petit plus, un...
33
          android:layout_height="wrap_content"
c8059613   JLo'w   Re-fonte de l'app...
34
35
          android:inputType="number"
          android:ems="10"
520cecde   JLo'w   Un petit plus, un...
36
          android:id="@+id/commande_prix"
c8059613   JLo'w   Re-fonte de l'app...
37
38
39
          android:editable="true"
          android:elegantTextHeight="true"
          android:enabled="true"
c8059613   JLo'w   Re-fonte de l'app...
40
41
42
43
44
          android:numeric="decimal"
          android:width="300dp"
          android:hint="@string/prix"
          android:textAlignment="center"
          android:layout_gravity="center_horizontal"
520cecde   JLo'w   Un petit plus, un...
45
46
47
48
49
          android:layout_marginTop="20dp"
          android:height="80dp"
          android:minHeight="50dp"
          android:maxHeight="500dp"
          android:minWidth="120dp" />
c8059613   JLo'w   Re-fonte de l'app...
50
51
52
53
54
  
      <Button
          android:layout_width="wrap_content"
          android:layout_height="wrap_content"
          android:text="@string/validate"
520cecde   JLo'w   Un petit plus, un...
55
          android:id="@+id/commande_validation"
c8059613   JLo'w   Re-fonte de l'app...
56
57
          android:layout_gravity="center_horizontal"
          android:layout_marginTop="40dp"
520cecde   JLo'w   Un petit plus, un...
58
          android:width="180dp"
c8059613   JLo'w   Re-fonte de l'app...
59
60
          android:height="80dp"
          android:onClick="valideCommande"
520cecde   JLo'w   Un petit plus, un...
61
62
63
64
          android:nestedScrollingEnabled="false"
          android:enabled="true"
          android:focusable="true"
          android:focusableInTouchMode="true" />
c8059613   JLo'w   Re-fonte de l'app...
65
66
  
  </LinearLayout>