mirror of
https://github.com/moparisthebest/android-app
synced 2024-11-15 13:25:07 -05:00
28 lines
805 B
XML
28 lines
805 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent" >
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:orientation="vertical" >
|
|
|
|
<TextView
|
|
android:id="@+id/txtTitre"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="Titre"
|
|
android:textSize="25sp" />
|
|
|
|
<TextView
|
|
android:id="@+id/txtContent"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="Contenu" />
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
</ScrollView>
|