mirror of
https://github.com/jfoucry/Pilldroid.git
synced 2024-11-16 18:32:38 +01:00
26 lines
968 B
XML
26 lines
968 B
XML
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||
|
android:orientation="vertical" android:layout_width="match_parent"
|
||
|
android:layout_height="match_parent">
|
||
|
<TextView
|
||
|
android:id="@+id/valeur"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:text="Valeur"
|
||
|
android:textSize="16dp"
|
||
|
android:textColor="#040404"
|
||
|
android:textStyle="bold"
|
||
|
android:paddingLeft="10dp" />
|
||
|
<TextView
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:text="Label"
|
||
|
android:layout_below="@+id/valeur"
|
||
|
android:layout_alignParentLeft="true"
|
||
|
android:textStyle="italic"
|
||
|
android:textColor="#57C1DE"
|
||
|
android:background="@android:color/transparent"
|
||
|
android:id="@+id/label"
|
||
|
android:paddingLeft="10sp" />
|
||
|
|
||
|
</RelativeLayout>
|