mirror of
https://github.com/moparisthebest/android-app
synced 2024-11-15 05:15:04 -05:00
59 lines
1.8 KiB
XML
59 lines
1.8 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"
|
|
android:id="@+id/scroll" >
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="vertical"
|
|
android:paddingLeft="15sp"
|
|
android:paddingRight="15sp"
|
|
android:paddingTop="15dp" >
|
|
|
|
<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="1dip"
|
|
android:layout_marginBottom="5sp"
|
|
android:layout_marginTop="5sp"
|
|
android:background="#000000" />
|
|
|
|
<TextView
|
|
android:id="@+id/txtContent"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:textSize="18sp" />
|
|
|
|
<View
|
|
android:id="@+id/view1"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="1dip"
|
|
android:layout_marginBottom="5sp"
|
|
android:layout_marginTop="5sp"
|
|
android:background="#000000" />
|
|
|
|
<Button
|
|
android:id="@+id/btnMarkRead"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="wrap_content"
|
|
android:text="@string/btnMarkRead" />
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
</ScrollView>
|