Blame view

PremiereActivite/app/src/main/res/layout/layout_creation.xml 1.47 KB
c8059613   JLo'w   Re-fonte de l'app...
1
2
3
4
5
6
7
8
9
10
  <?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">
  
      <EditText
          android:layout_width="wrap_content"
          android:layout_height="wrap_content"
          android:inputType="numberDecimal"
          android:ems="10"
cf7dd450   JLo'w   Rendre les bouton...
11
          android:id="@+id/creation_montant"
c8059613   JLo'w   Re-fonte de l'app...
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
          android:layout_gravity="center_horizontal"
          android:editable="true"
          android:elegantTextHeight="true"
          android:enabled="true"
          android:focusable="true"
          android:focusableInTouchMode="true"
          android:minHeight="80dp"
          android:minWidth="200dp"
          android:numeric="decimal"
          android:width="250dp"
          android:layout_marginTop="80dp"
          android:hint="@string/montant"
          android:textAlignment="center" />
  
      <Button
          android:layout_width="wrap_content"
          android:layout_height="wrap_content"
          android:text="@string/validate"
cf7dd450   JLo'w   Rendre les bouton...
30
          android:id="@+id/creation_validation"
c8059613   JLo'w   Re-fonte de l'app...
31
32
33
34
          android:layout_gravity="center_horizontal"
          android:layout_marginTop="80dp"
          android:elegantTextHeight="true"
          android:enabled="true"
c8059613   JLo'w   Re-fonte de l'app...
35
36
37
38
          android:height="80dp"
          android:minHeight="80dp"
          android:minWidth="150dp"
          android:textAlignment="center"
cf7dd450   JLo'w   Rendre les bouton...
39
40
          android:width="200dp"
          android:onClick="valideCreationCompte" />
c8059613   JLo'w   Re-fonte de l'app...
41
  </LinearLayout>