mirror of
https://github.com/moparisthebest/android-app
synced 2024-12-25 07:58:48 -05:00
49 lines
1.5 KiB
XML
49 lines
1.5 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<ScrollView
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:id="@+id/scroll"
|
|
tools:context="fr.gaulupeau.apps.Poche.ReadArticle" >
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="vertical" >
|
|
|
|
<WebView
|
|
android:id="@+id/webViewContent"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content" />
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="vertical"
|
|
android:paddingLeft="15sp"
|
|
android:paddingRight="15sp" >
|
|
|
|
<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:layout_marginBottom="5dp"
|
|
android:text="@string/btnMarkRead" />
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
</ScrollView>
|