4abf4602
Florian Deze
Début Interface g...
|
1
2
|
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
4abf4602
Florian Deze
Début Interface g...
|
3
|
android:orientation="vertical" android:layout_width="match_parent"
|
c8059613
JLo'w
Re-fonte de l'app...
|
4
|
android:layout_height="match_parent">
|
4abf4602
Florian Deze
Début Interface g...
|
5
|
|
520cecde
JLo'w
Un petit plus, un...
|
6
7
|
<EditText
android:layout_width="wrap_content"
|
4abf4602
Florian Deze
Début Interface g...
|
8
|
android:layout_height="wrap_content"
|
520cecde
JLo'w
Un petit plus, un...
|
9
|
android:id="@+id/connection_username"
|
e11e96d0
JLo'w
Correction problè...
|
10
|
android:layout_gravity="center_horizontal"
|
520cecde
JLo'w
Un petit plus, un...
|
11
|
android:editable="true"
|
520cecde
JLo'w
Un petit plus, un...
|
12
|
android:enabled="true"
|
e11e96d0
JLo'w
Correction problè...
|
13
14
15
16
17
18
19
20
21
|
android:focusable="true"
android:focusableInTouchMode="true"
android:inputType="text"
android:minHeight="80dp"
android:minWidth="250dp"
android:width="250dp"
android:hint="@string/user"
android:height="80dp"
android:textAlignment="center" />
|
4abf4602
Florian Deze
Début Interface g...
|
22
|
|
520cecde
JLo'w
Un petit plus, un...
|
23
24
|
<EditText
android:layout_width="wrap_content"
|
4abf4602
Florian Deze
Début Interface g...
|
25
|
android:layout_height="wrap_content"
|
520cecde
JLo'w
Un petit plus, un...
|
26
|
android:id="@+id/connection_password"
|
e11e96d0
JLo'w
Correction problè...
|
27
28
29
|
android:layout_gravity="center_horizontal"
android:hint="@string/password"
android:inputType="textPassword"
|
520cecde
JLo'w
Un petit plus, un...
|
30
|
android:editable="true"
|
520cecde
JLo'w
Un petit plus, un...
|
31
|
android:enabled="true"
|
e11e96d0
JLo'w
Correction problè...
|
32
33
34
35
36
37
38
39
40
|
android:focusable="true"
android:focusableInTouchMode="true"
android:height="80dp"
android:minHeight="80dp"
android:minWidth="250dp"
android:password="true"
android:width="250dp"
android:layout_marginTop="40dp"
android:textAlignment="center" />
|
4abf4602
Florian Deze
Début Interface g...
|
41
42
43
44
|
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
|
520cecde
JLo'w
Un petit plus, un...
|
45
|
android:text="@string/validate"
|
e11e96d0
JLo'w
Correction problè...
|
46
|
android:id="@+id/connection_button"
|
520cecde
JLo'w
Un petit plus, un...
|
47
48
|
android:layout_gravity="center_horizontal"
android:layout_marginTop="40dp"
|
e11e96d0
JLo'w
Correction problè...
|
49
|
android:clickable="true"
|
520cecde
JLo'w
Un petit plus, un...
|
50
|
android:enabled="true"
|
e11e96d0
JLo'w
Correction problè...
|
51
52
53
54
55
56
57
|
android:height="50dp"
android:hint="@string/validate"
android:minHeight="40dp"
android:minWidth="150dp"
android:onClick="valideConnection"
android:textAlignment="center"
android:width="150dp" />
|
4abf4602
Florian Deze
Début Interface g...
|
58
|
</LinearLayout>
|