c8059613
JLo'w
Re-fonte de l'app...
|
1
2
3
4
5
6
7
8
9
10
11
12
13
|
<?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"
|
cf7dd450
JLo'w
Rendre les bouton...
|
14
|
android:ems="10"
|
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
|
android:numeric="integer"
android:width="300dp"
android:hint="@string/quant"
android:textAlignment="center"
android:layout_gravity="center_horizontal"
|
cf7dd450
JLo'w
Rendre les bouton...
|
24
|
android:layout_marginTop="20dp"
|
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
|
android:maxHeight="500dp"
|
cf7dd450
JLo'w
Rendre les bouton...
|
28
|
android:minWidth="120dp" />
|
c8059613
JLo'w
Re-fonte de l'app...
|
29
30
31
|
<EditText
android:layout_width="wrap_content"
|
520cecde
JLo'w
Un petit plus, un...
|
32
|
android:layout_height="wrap_content"
|
c8059613
JLo'w
Re-fonte de l'app...
|
33
34
|
android:inputType="number"
android:ems="10"
|
520cecde
JLo'w
Un petit plus, un...
|
35
|
android:id="@+id/commande_prix"
|
c8059613
JLo'w
Re-fonte de l'app...
|
36
37
38
|
android:editable="true"
android:elegantTextHeight="true"
android:enabled="true"
|
c8059613
JLo'w
Re-fonte de l'app...
|
39
40
41
42
43
|
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...
|
44
45
46
47
48
|
android:layout_marginTop="20dp"
android:height="80dp"
android:minHeight="50dp"
android:maxHeight="500dp"
android:minWidth="120dp" />
|
c8059613
JLo'w
Re-fonte de l'app...
|
49
50
51
52
53
|
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/validate"
|
520cecde
JLo'w
Un petit plus, un...
|
54
|
android:id="@+id/commande_validation"
|
c8059613
JLo'w
Re-fonte de l'app...
|
55
56
|
android:layout_gravity="center_horizontal"
android:layout_marginTop="40dp"
|
520cecde
JLo'w
Un petit plus, un...
|
57
|
android:width="180dp"
|
c8059613
JLo'w
Re-fonte de l'app...
|
58
59
|
android:height="80dp"
android:onClick="valideCommande"
|
520cecde
JLo'w
Un petit plus, un...
|
60
|
android:nestedScrollingEnabled="false"
|
cf7dd450
JLo'w
Rendre les bouton...
|
61
|
android:enabled="true" />
|
c8059613
JLo'w
Re-fonte de l'app...
|
62
63
|
</LinearLayout>
|