android-app/app/src/main/res/layout/article.xml

49 lines
1.5 KiB
XML
Raw Normal View History

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"
xmlns:tools="http://schemas.android.com/tools"
2013-11-11 17:07:22 -05:00
android:layout_width="match_parent"
2014-01-04 09:33:29 -05:00
android:layout_height="match_parent"
android:id="@+id/scroll"
tools:context="fr.gaulupeau.apps.Poche.ReadArticle" >
2013-11-11 17:07:22 -05:00
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical" >
<WebView
android:id="@+id/webViewContent"
2013-11-11 17:07:22 -05:00
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"
2014-08-19 10:00:09 -04:00
android:layout_marginBottom="5dp"
android:text="@string/btnMarkRead" />
</LinearLayout>
2013-11-11 17:07:22 -05:00
</LinearLayout>
</ScrollView>