Blame view

app/src/main/res/layout/fragment_create_personne.xml 2 KB
d17732ca   badetitou   Change Button
1
2
3
4
5
6
7
8
9
  <LinearLayout
      xmlns:android="http://schemas.android.com/apk/res/android"
      xmlns:tools="http://schemas.android.com/tools"
      tools:context="net.plil.clubinfo.etunicorn.app.consommation.CreateConsommation"
      android:orientation="vertical"
      android:layout_width="match_parent"
      android:layout_height="match_parent"
      >
  
7f1ea456   badetitou   Stabilité app + d...
10
      <android.support.design.widget.TextInputLayout
d17732ca   badetitou   Change Button
11
12
          android:layout_width="match_parent"
          android:layout_height="wrap_content"
7f1ea456   badetitou   Stabilité app + d...
13
14
15
16
17
18
19
20
21
          android:id="@+id/create_personne_login_input">
          <android.support.design.widget.TextInputEditText
              android:layout_width="match_parent"
              android:layout_height="wrap_content"
              android:id="@+id/create_personne_login"
              android:hint="@string/create_personne_login"/>
      </android.support.design.widget.TextInputLayout>
  
      <android.support.design.widget.TextInputLayout
d17732ca   badetitou   Change Button
22
23
          android:layout_width="match_parent"
          android:layout_height="wrap_content"
7f1ea456   badetitou   Stabilité app + d...
24
25
26
27
28
29
30
          android:id="@+id/create_personne_carte_input">
          <android.support.design.widget.TextInputEditText
              android:layout_width="match_parent"
              android:layout_height="wrap_content"
              android:id="@+id/create_personne_carte"
              android:hint="@string/create_personne_carte"/>
      </android.support.design.widget.TextInputLayout>
d17732ca   badetitou   Change Button
31
  
393ff95e   badetitou   Start getting rol...
32
      <Spinner
d17732ca   badetitou   Change Button
33
34
35
          android:layout_width="match_parent"
          android:layout_height="wrap_content"
          android:id="@+id/create_personne_naissance"
393ff95e   badetitou   Start getting rol...
36
37
          android:prompt="@string/create_personne_naissance"
          android:entries="@string/action_delete" />
d17732ca   badetitou   Change Button
38
  
393ff95e   badetitou   Start getting rol...
39
      <Spinner
d17732ca   badetitou   Change Button
40
41
          android:layout_width="match_parent"
          android:layout_height="wrap_content"
393ff95e   badetitou   Start getting rol...
42
          android:id="@+id/create_personne_role" />
d17732ca   badetitou   Change Button
43
44
45
46
47
48
49
50
51
52
  
  
      <ProgressBar
          style="?android:attr/progressBarStyle"
          android:layout_width="match_parent"
          android:layout_height="wrap_content"
          android:id="@+id/create_personne_progress_bar"
          android:visibility="gone"/>
  
  </LinearLayout>