2013-11-11 17:07:22 -05:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
android:layout_width="match_parent"
|
2014-01-04 09:33:29 -05:00
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:id="@+id/scroll" >
|
2013-11-11 17:07:22 -05:00
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="match_parent"
|
2013-11-14 08:51:31 -05:00
|
|
|
android:layout_height="wrap_content"
|
2013-11-14 18:11:10 -05:00
|
|
|
android:orientation="vertical"
|
|
|
|
android:paddingLeft="15sp"
|
|
|
|
android:paddingRight="15sp"
|
|
|
|
android:paddingTop="15dp" >
|
2013-11-11 17:07:22 -05:00
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/txtTitre"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:textSize="25sp" />
|
|
|
|
|
2013-11-13 08:56:49 -05:00
|
|
|
<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"
|
2013-11-14 18:11:10 -05:00
|
|
|
android:layout_height="1dip"
|
|
|
|
android:layout_marginBottom="5sp"
|
|
|
|
android:layout_marginTop="5sp"
|
|
|
|
android:background="#000000" />
|
2013-11-13 08:56:49 -05:00
|
|
|
|
2013-11-11 17:07:22 -05:00
|
|
|
<TextView
|
|
|
|
android:id="@+id/txtContent"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2013-11-13 08:56:49 -05:00
|
|
|
android:textSize="18sp" />
|
|
|
|
|
2013-11-14 18:11:10 -05:00
|
|
|
<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" />
|
|
|
|
|
2013-11-13 08:56:49 -05:00
|
|
|
<Button
|
|
|
|
android:id="@+id/btnMarkRead"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:text="@string/btnMarkRead" />
|
2013-11-11 17:07:22 -05:00
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
|
|
|
|
</ScrollView>
|