summaryrefslogtreecommitdiff
path: root/res/layout/article_fragment.xml
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2013-11-23 20:31:37 +0400
committerAndrew Dolgov <[email protected]>2013-11-23 20:31:37 +0400
commit3b3b79ade20b6b5e808faa262e868a04c6dd985d (patch)
treeb5f051fbcb81ebd277003f1e9534ae84381dc6f6 /res/layout/article_fragment.xml
parent87d75a0d6c0109a4986ffe85d21ecff9ed91b750 (diff)
support displaying article notes (requires API 8)
Diffstat (limited to 'res/layout/article_fragment.xml')
-rw-r--r--res/layout/article_fragment.xml14
1 files changed, 14 insertions, 0 deletions
diff --git a/res/layout/article_fragment.xml b/res/layout/article_fragment.xml
index 8ea27c55..70016361 100644
--- a/res/layout/article_fragment.xml
+++ b/res/layout/article_fragment.xml
@@ -92,12 +92,26 @@
android:textColor="?headlineSecondaryTextColor"
android:textSize="12sp" />
</LinearLayout>
+
</LinearLayout>
+ <TextView
+ android:id="@+id/note"
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content"
+ android:layout_weight="1"
+ android:background="?articleNoteBackground"
+ android:textColor="?articleNoteTextColor"
+ android:textSize="13sp"
+ android:padding="2dp"
+ android:layout_marginBottom="4dp"
+ android:text="[Article note]" />
+
<org.fox.ttrss.util.LessBrokenWebView
android:id="@+id/content"
android:layout_width="match_parent"
android:layout_height="wrap_content" />
+
</LinearLayout>
</org.fox.ttrss.util.NoChildFocusScrollView>