b8e00f52
martin.rohmer
mise à dispositio...
|
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
52
|
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/layoutPrise">
<ImageView
android:layout_width="80dp"
android:layout_height="80dp"
android:id="@+id/logoMenu"
android:layout_margin="5dp"
android:adjustViewBounds="true"
android:background="@color/colorPrimaryDark"
android:scaleType="fitCenter"
android:layout_alignParentLeft="true"
android:layout_alignParentStart="true"/>
<ImageButton
android:layout_width="40dp"
android:layout_height="40dp"
android:id="@+id/boutonConfirmMenu"
android:gravity="end"
android:checked="false"
android:adjustViewBounds="true"
android:background="@color/colorPrimary"
android:scaleType="fitCenter"
android:layout_marginRight="15dp"
android:layout_centerVertical="true"
android:layout_alignParentRight="true"/>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/horlogeMenu"
android:textSize="25dp"
android:gravity="center_horizontal"
android:layout_below="@+id/nomMenu"
android:layout_toRightOf="@+id/logoMenu"
android:layout_toEndOf="@+id/logoMenu" />
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/nomMenu"
android:textSize="30dp"
android:gravity="center_horizontal"
android:layout_alignParentTop="true"
android:layout_toRightOf="@+id/logoMenu"
android:layout_toEndOf="@+id/logoMenu" />
</RelativeLayout>
|