Blame view

app/src/main/res/layout/fragment_personne.xml 2.05 KB
be13b838   badetitou   Create personne menu
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
  <?xml version="1.0" encoding="utf-8"?>
  <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
      android:layout_width="wrap_content"
      android:layout_height="wrap_content"
      xmlns:tools="http://schemas.android.com/tools"
      android:orientation="horizontal"
      android:foreground="?attr/selectableItemBackground">
  
  
      <TextView
          android:id="@+id/personne_login"
          android:layout_width="wrap_content"
          android:layout_height="wrap_content"
          android:layout_margin="@dimen/text_margin"
          android:textAppearance="?attr/textAppearanceListItem" />
      <TextView
          android:id="@+id/personne_carte"
          android:layout_width="wrap_content"
          android:layout_height="wrap_content"
          android:layout_margin="@dimen/text_margin"
          android:textAppearance="?attr/textAppearanceListItem"
          android:layout_toEndOf="@id/personne_login"/>
      <TextView
          android:id="@+id/personne_role"
          android:layout_width="wrap_content"
          android:layout_height="wrap_content"
          android:layout_margin="@dimen/text_margin"
          android:textAppearance="?attr/textAppearanceListItem"
          android:layout_toEndOf="@id/personne_carte"/>
      <TextView
          android:id="@+id/personne_solde"
          android:layout_width="wrap_content"
          android:layout_height="wrap_content"
          android:layout_margin="@dimen/text_margin"
          android:textAppearance="?attr/textAppearanceListItem"
          android:layout_toEndOf="@id/personne_solde"/>
  
      <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"
          android:layout_alignParentRight="true" />
  
  </RelativeLayout>