mirror of
https://github.com/moparisthebest/android-app
synced 2024-11-15 13:25:07 -05:00
45 lines
1.3 KiB
XML
45 lines
1.3 KiB
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="wrap_content"
|
|
android:orientation="vertical" >
|
|
|
|
<TextView
|
|
android:id="@+id/txtTitre"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:textSize="25sp" />
|
|
|
|
<TextView
|
|
android:id="@+id/txtAuthor"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:textSize="12sp" />
|
|
|
|
<View
|
|
android:id="@+id/viewLine"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="2dip"
|
|
android:background="#000000" />
|
|
|
|
<TextView
|
|
android:id="@+id/txtContent"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:textSize="18sp" />
|
|
|
|
<Button
|
|
android:id="@+id/btnMarkRead"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="wrap_content"
|
|
android:text="@string/btnMarkRead" />
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
</ScrollView>
|