Blame view

PremiereActivite/app/src/main/res/layout/layout_connection.xml 1.32 KB
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
  
c8059613   JLo'w   Re-fonte de l'app...
6
7
      <TextView
          android:layout_width="wrap_content"
4abf4602   Florian Deze   Début Interface g...
8
          android:layout_height="wrap_content"
c8059613   JLo'w   Re-fonte de l'app...
9
10
11
12
13
14
15
16
          android:text="Bonjours, veuillez entrez les informations suivantes"
          android:id="@+id/mainText"
          android:inputType="none"
          android:textAlignment="center"
          android:textAppearance="@android:color/primary_text_light"
          android:textColor="@color/abc_input_method_navigation_guard"
          android:textSize="@dimen/abc_text_size_large_material"
          android:textStyle="bold" />
4abf4602   Florian Deze   Début Interface g...
17
18
19
20
  
      <AutoCompleteTextView
          android:layout_width="match_parent"
          android:layout_height="wrap_content"
c8059613   JLo'w   Re-fonte de l'app...
21
          android:text="Identifiant"
4abf4602   Florian Deze   Début Interface g...
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
          android:id="@+id/identifiant_principal" />
  
      <MultiAutoCompleteTextView
          android:layout_width="match_parent"
          android:layout_height="wrap_content"
          android:text="password"
          android:id="@+id/password_principal" />
  
      <Button
          android:layout_width="wrap_content"
          android:layout_height="wrap_content"
          android:text="Validez"
          android:id="@+id/validation_principal" />
  
  </LinearLayout>