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
|
<?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">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/horloge"
android:textSize="40dp"
android:layout_marginLeft="30dp"
android:layout_marginRight="5dp"
android:gravity="center_horizontal"/>
<ImageButton
android:layout_width="30dp"
android:layout_height="30dp"
android:id="@+id/boutonConfirm"
android:gravity="end"
android:checked="false"
android:adjustViewBounds="true"
android:background="@color/colorPrimary"
android:scaleType="fitCenter"
android:layout_alignBottom="@+id/horloge"
android:layout_toRightOf="@+id/horloge"
android:layout_toEndOf="@+id/horloge" />
</RelativeLayout>
|