mirror of
https://github.com/moparisthebest/android-app
synced 2024-11-15 13:25:07 -05:00
15 lines
540 B
XML
15 lines
540 B
XML
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||
|
android:orientation="vertical" android:padding="10sp"
|
||
|
android:layout_width="fill_parent" android:layout_height="fill_parent">
|
||
|
|
||
|
<TextView
|
||
|
android:id="@+id/listitem_titre"
|
||
|
android:layout_width="fill_parent"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:text="titre"
|
||
|
android:textSize="13sp"
|
||
|
android:typeface="serif" />
|
||
|
|
||
|
</LinearLayout>
|