summaryrefslogtreecommitdiff
path: root/res/layout
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2013-05-23 15:15:23 +0400
committerAndrew Dolgov <[email protected]>2013-05-23 15:15:23 +0400
commit2f428e843eeae1040fd3b71fc5e83ebc3ae8005e (patch)
tree146ad8733e68811088ba8e0a164febd2ea1e7861 /res/layout
parent64c94675346fb86e80eda79f6908cf86cef85545 (diff)
update articlefragment style
Diffstat (limited to 'res/layout')
-rw-r--r--res/layout/article_fragment.xml147
1 files changed, 72 insertions, 75 deletions
diff --git a/res/layout/article_fragment.xml b/res/layout/article_fragment.xml
index 3ef1926a..73698d3f 100644
--- a/res/layout/article_fragment.xml
+++ b/res/layout/article_fragment.xml
@@ -1,4 +1,4 @@
-<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
+<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/article_fragment"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
@@ -10,90 +10,87 @@
android:id="@+id/content"
android:layout_width="match_parent"
android:layout_height="match_parent"
- android:layout_weight="1" >
+ android:layout_weight="1">
+
+ <LinearLayout
+ android:id="@+id/article_header"
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content"
+ android:layout_weight="0"
+ android:orientation="vertical"
+ android:paddingBottom="2dp" >
- <LinearLayout
- android:id="@+id/article_header"
+ <TextView
+ android:id="@+id/title"
android:layout_width="match_parent"
android:layout_height="wrap_content"
- android:layout_weight="0"
- android:orientation="vertical" >
+ android:layout_weight="1"
+ android:paddingBottom="4dp"
+ android:text="My simple headline"
+ android:textColor="?linkColor"
+ android:textSize="18sp" />
- <TextView
- android:id="@+id/title"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_weight="1"
- android:text="There are many variations of passages of Lorem Ipsum available"
- android:textColor="?linkColor"
- android:textSize="16sp" />
+ <TextView
+ android:id="@+id/author"
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content"
+ android:layout_weight="1"
+ android:ellipsize="end"
+ android:gravity="right"
+ android:singleLine="true"
+ android:text="by Author"
+ android:textColor="?headlineSecondaryTextColor"
+ android:textSize="14sp" />
- <LinearLayout
- android:id="@+id/comments_and_author"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:orientation="horizontal" >
+ <TextView
+ android:id="@+id/comments"
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content"
+ android:layout_weight="1"
+ android:text="24 comments"
+ android:textColor="?linkColor"
+ android:textSize="12sp" />
- <TextView
- android:id="@+id/comments"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_weight="1"
- android:text="24 comments"
- android:textColor="?linkColor"
- android:textSize="13sp" />
+ <ImageView
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content"
+ android:layout_marginBottom="4dp"
+ android:layout_marginTop="4dp"
+ android:layout_weight="0"
+ android:background="?ttrssHorizontalDivider"
+ android:paddingTop="2dip" />
- <TextView
- android:id="@+id/author"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_weight="1"
- android:ellipsize="end"
- android:gravity="right"
- android:singleLine="true"
- android:text="{Author}"
- android:textColor="?headlineExcerptTextColor"
- android:textSize="13sp"
- android:textStyle="italic" />
- </LinearLayout>
+ <LinearLayout
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content"
+ android:paddingBottom="4dp"
+ android:layout_weight="1" >
- <LinearLayout
- android:layout_width="match_parent"
+ <TextView
+ android:id="@+id/tags"
+ android:layout_width="wrap_content"
android:layout_height="wrap_content"
- android:layout_weight="1" >
-
- <TextView
- android:id="@+id/tags"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_weight="0.7"
- android:ellipsize="end"
- android:singleLine="true"
- android:text="{TAGS}"
- android:textColor="?headlineExcerptTextColor"
- android:textSize="13sp" />
+ android:layout_weight="0.5"
+ android:ellipsize="end"
+ android:singleLine="true"
+ android:text="Example Feed"
+ android:textColor="?headlineSecondaryTextColor"
+ android:textSize="12sp" />
- <TextView
- android:id="@+id/date"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_weight="0.2"
- android:gravity="right"
- android:text="{DATE}"
- android:textAppearance="?android:attr/textAppearanceSmall"
- android:textColor="?headlineExcerptTextColor"
- android:textSize="13sp"
- android:textStyle="italic" />
- </LinearLayout>
-
- <ImageView
- android:layout_width="match_parent"
+ <TextView
+ android:id="@+id/date"
+ android:layout_width="wrap_content"
android:layout_height="wrap_content"
- android:layout_marginBottom="5sp"
- android:layout_weight="0"
- android:background="?ttrssHorizontalDivider"
- android:paddingTop="2dip" />
+ android:layout_weight="0.5"
+ android:gravity="right"
+ android:text="Jan 01, 12:00"
+ android:textAppearance="?android:attr/textAppearanceSmall"
+ android:textColor="?headlineSecondaryTextColor"
+ android:textSize="12sp" />
</LinearLayout>
- </org.fox.ttrss.TitleWebView>
+ </LinearLayout>
+
+
+ </org.fox.ttrss.TitleWebView>
-</FrameLayout> \ No newline at end of file
+</LinearLayout> \ No newline at end of file