diff options
-rw-r--r-- | README.md | 6 | ||||
-rw-r--r-- | app/src/main/res/layout/activity_article.xml | 7 |
2 files changed, 5 insertions, 8 deletions
@@ -5,6 +5,8 @@ Copyright © 2015 Randy Wanga, Jos Craaijo, Joep Bernards, Camil Staps. This project is licensed under GPLv2. For more details, see the LICENSE file. +See: https://github.com/camilstaps/RSSin + # Todo (see also the @todo markings throughout the source code) @@ -19,7 +21,3 @@ This project is licensed under GPLv2. For more details, see the LICENSE file. ## Low priority * Readability plugin to view whole article - -# Notes - -* Idea loading icon: http://jsfiddle.net/se44ed8u/1/ diff --git a/app/src/main/res/layout/activity_article.xml b/app/src/main/res/layout/activity_article.xml index d728e4b..67015e2 100644 --- a/app/src/main/res/layout/activity_article.xml +++ b/app/src/main/res/layout/activity_article.xml @@ -62,16 +62,15 @@ android:layout_height="wrap_content" android:textSize="@dimen/font_size_small" android:textStyle="italic"/> - <TextView + + <Button android:id="@+id/article_link" android:layout_width="fill_parent" android:layout_height="wrap_content" android:text="@string/article_link_to_website" - android:textColor="@color/link_text_material_light" android:textSize="@dimen/font_size_normal" android:onClick="onClick" - android:paddingTop="@dimen/activity_vertical_margin" - android:clickable="true"/> + android:paddingTop="@dimen/activity_vertical_margin"/> </LinearLayout> </ScrollView> |