Blame view

app/src/main/res/layout/fragment_personne.xml 2.05 KB
be13b838   badetitou   Create personne menu
1
  <?xml version="1.0" encoding="utf-8"?>
97f92a02   badetitou   Design List Personne
2
3
  <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
      android:layout_width="match_parent"
be13b838   badetitou   Create personne menu
4
5
6
7
8
      android:layout_height="wrap_content"
      xmlns:tools="http://schemas.android.com/tools"
      android:orientation="horizontal"
      android:foreground="?attr/selectableItemBackground">
  
be13b838   badetitou   Create personne menu
9
10
      <TextView
          android:id="@+id/personne_login"
97f92a02   badetitou   Design List Personne
11
          android:layout_width="match_parent"
be13b838   badetitou   Create personne menu
12
13
          android:layout_height="wrap_content"
          android:layout_margin="@dimen/text_margin"
97f92a02   badetitou   Design List Personne
14
15
          android:textAppearance="?attr/textAppearanceListItem"
          android:layout_weight="2"/>
be13b838   badetitou   Create personne menu
16
17
      <TextView
          android:id="@+id/personne_carte"
97f92a02   badetitou   Design List Personne
18
          android:layout_width="match_parent"
be13b838   badetitou   Create personne menu
19
20
21
          android:layout_height="wrap_content"
          android:layout_margin="@dimen/text_margin"
          android:textAppearance="?attr/textAppearanceListItem"
97f92a02   badetitou   Design List Personne
22
          android:layout_weight="2"/>
be13b838   badetitou   Create personne menu
23
24
      <TextView
          android:id="@+id/personne_role"
97f92a02   badetitou   Design List Personne
25
          android:layout_width="match_parent"
be13b838   badetitou   Create personne menu
26
27
28
          android:layout_height="wrap_content"
          android:layout_margin="@dimen/text_margin"
          android:textAppearance="?attr/textAppearanceListItem"
97f92a02   badetitou   Design List Personne
29
          android:layout_weight="2"/>
be13b838   badetitou   Create personne menu
30
31
      <TextView
          android:id="@+id/personne_solde"
97f92a02   badetitou   Design List Personne
32
          android:layout_width="match_parent"
be13b838   badetitou   Create personne menu
33
34
35
          android:layout_height="wrap_content"
          android:layout_margin="@dimen/text_margin"
          android:textAppearance="?attr/textAppearanceListItem"
97f92a02   badetitou   Design List Personne
36
          android:layout_weight="2"/>
be13b838   badetitou   Create personne menu
37
38
39
40
41
42
43
44
45
46
47
48
  
      <TextView
          android:id="@+id/personne_options"
          android:layout_width="wrap_content"
          android:layout_height="wrap_content"
          android:paddingRight="@dimen/activity_horizontal_margin"
          android:paddingLeft="@dimen/activity_horizontal_margin"
          android:text="&#8942;"
          android:textAppearance="?android:textAppearanceLarge"
          tools:ignore="RtlHardcoded,RtlSymmetry"
          android:textStyle="normal|bold"
          android:translationY="10dp"
97f92a02   badetitou   Design List Personne
49
50
          android:layout_gravity="right"
          android:layout_weight="0"/>
be13b838   badetitou   Create personne menu
51
  
97f92a02   badetitou   Design List Personne
52
  </LinearLayout>