diff --git a/res/layout-port/headlines_row.xml b/res/layout-port/headlines_row.xml
index d957ae9d..223dfc0d 100644
--- a/res/layout-port/headlines_row.xml
+++ b/res/layout-port/headlines_row.xml
@@ -33,8 +33,8 @@
android:layout_height="match_parent"
android:ellipsize="end"
android:singleLine="true"
- android:textColor="?headlineTextColor"
android:text="There are many variations of passages of Lorem Ipsum available"
+ android:textColor="?headlineTextColor"
android:textSize="16sp" />
+ android:textSize="11sp" />
+
+
-
+
+
+
+ android:layout_weight="1"
+ android:prompt="@string/attachments_prompt" />
-
+
-
-
-
-
+
+
\ No newline at end of file
diff --git a/res/layout-port/headlines_row_selected.xml b/res/layout-port/headlines_row_selected.xml
index 50eadb49..74b7ca8d 100644
--- a/res/layout-port/headlines_row_selected.xml
+++ b/res/layout-port/headlines_row_selected.xml
@@ -7,7 +7,6 @@
android:gravity="center_vertical"
android:orientation="vertical" >
-
+ android:textSize="11sp" />
+
+
-
+ android:layout_weight="1"
+ android:text="Article content" />
+
+
+ android:layout_weight="1"
+ android:prompt="@string/attachments_prompt" />
-
+
-
+
+
-
-
\ No newline at end of file
diff --git a/res/layout-port/headlines_row_unread.xml b/res/layout-port/headlines_row_unread.xml
index fcf1c387..4910cdc7 100644
--- a/res/layout-port/headlines_row_unread.xml
+++ b/res/layout-port/headlines_row_unread.xml
@@ -7,7 +7,6 @@
android:gravity="center_vertical"
android:orientation="vertical" >
-
+ android:textSize="11sp" />
+
+
-
-
+
+
+ android:layout_weight="1"
+ android:prompt="@string/attachments_prompt" />
-
+
-
+
+
-
-
-
\ No newline at end of file
diff --git a/res/layout-xlarge/headlines_row.xml b/res/layout-xlarge/headlines_row.xml
deleted file mode 100644
index 73e6b941..00000000
--- a/res/layout-xlarge/headlines_row.xml
+++ /dev/null
@@ -1,141 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/res/layout-xlarge/headlines_row_selected.xml b/res/layout-xlarge/headlines_row_selected.xml
deleted file mode 100644
index 00171f0d..00000000
--- a/res/layout-xlarge/headlines_row_selected.xml
+++ /dev/null
@@ -1,139 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/res/layout-xlarge/headlines_row_unread.xml b/res/layout-xlarge/headlines_row_unread.xml
deleted file mode 100644
index 1ba714ab..00000000
--- a/res/layout-xlarge/headlines_row_unread.xml
+++ /dev/null
@@ -1,139 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/res/layout/headlines_row.xml b/res/layout/headlines_row.xml
index 77e98234..26c7bc95 100644
--- a/res/layout/headlines_row.xml
+++ b/res/layout/headlines_row.xml
@@ -58,7 +58,7 @@
android:textSize="13sp" >
-
+
+
+
+ android:textSize="11sp" >
+
-
+
+
+
+ android:textSize="11sp" >
+
-
+
+
+
+ android:textSize="11sp" >
+
attachments;
public String content;
public List> labels;
+ public String feed_title;
public Article(Parcel in) {
readFromParcel(in);
@@ -52,6 +53,7 @@ public class Article implements Parcelable {
out.writeStringList(tags);
out.writeString(content);
out.writeList(attachments);
+ out.writeString(feed_title);
}
public void readFromParcel(Parcel in) {
@@ -72,6 +74,8 @@ public class Article implements Parcelable {
attachments = new ArrayList();
in.readList(attachments, Attachment.class.getClassLoader());
+
+ feed_title = in.readString();
}
@SuppressWarnings("rawtypes")