summaryrefslogtreecommitdiff
path: root/org.fox.ttrss/src/main/res/layout/headlines_row_unread.xml
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2014-10-25 01:27:26 +0400
committerAndrew Dolgov <[email protected]>2014-10-25 01:27:26 +0400
commit81282a29db662ab29f292183c9bce937a96a0c20 (patch)
treeb87473668a237ea9e10c9bf4f94f57b45ade2195 /org.fox.ttrss/src/main/res/layout/headlines_row_unread.xml
parent5778c3beff02df494535276ef1d3028626cc82a1 (diff)
experimental: move to tablelayout for headline rows to simplify things a bit
Diffstat (limited to 'org.fox.ttrss/src/main/res/layout/headlines_row_unread.xml')
-rw-r--r--org.fox.ttrss/src/main/res/layout/headlines_row_unread.xml238
1 files changed, 125 insertions, 113 deletions
diff --git a/org.fox.ttrss/src/main/res/layout/headlines_row_unread.xml b/org.fox.ttrss/src/main/res/layout/headlines_row_unread.xml
index 1fdd4f8a..de5ea006 100644
--- a/org.fox.ttrss/src/main/res/layout/headlines_row_unread.xml
+++ b/org.fox.ttrss/src/main/res/layout/headlines_row_unread.xml
@@ -10,152 +10,164 @@
card_view:cardBackgroundColor="?headlineUnreadBackground"
tools:ignore="HardcodedText" >
- <LinearLayout
- android:id="@+id/inner_row"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:orientation="vertical"
- android:paddingBottom="2dp"
- android:paddingLeft="6dp"
- android:paddingRight="6dp"
- android:paddingTop="6dp" >
-
- <LinearLayout
- android:id="@+id/linearLayout6"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:gravity="center_vertical"
- android:orientation="horizontal" >
+ <TableLayout
+ android:layout_width="fill_parent"
+ android:layout_height="wrap_content"
+ android:padding="4dp"
+ android:baselineAligned="false"
+ android:shrinkColumns="0,1"
+ android:stretchColumns="0,1">
+
+
+ <TableRow
+ android:layout_width="fill_parent"
+ android:layout_height="wrap_content">
<TextView
android:id="@+id/title"
android:layout_width="match_parent"
android:layout_height="wrap_content"
- android:layout_weight="1"
android:gravity="center_vertical"
android:singleLine="false"
android:text="Sample entry title"
android:textColor="?headlineUnreadTextColor"
android:textSize="18sp"
- android:textStyle="bold" />
- </LinearLayout>
-
- <LinearLayout
- android:id="@+id/linearLayout1"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_weight="1"
- android:gravity="center_vertical"
- android:orientation="horizontal"
- android:paddingTop="3dp" >
+ android:textStyle="bold"
+ android:paddingBottom="4dp"
+ android:layout_span="2" />
+ </TableRow>
+
+ <TableRow
+ android:layout_width="fill_parent"
+ android:layout_height="wrap_content">
<TextView
android:id="@+id/feed_title"
- android:layout_width="wrap_content"
+ android:layout_width="0dp"
android:layout_height="wrap_content"
- android:layout_weight="1"
android:ellipsize="end"
android:fontFamily="sans-serif-light"
android:gravity="center_vertical"
android:singleLine="true"
- android:text="Example Feed"
+ android:text="Example Feed AAA AAA AAAAAA AAAA AAAAA AA A A AA AA"
android:textColor="?headlineSecondaryTextColor"
- android:textSize="12sp" />
+ android:textSize="12sp"
+ android:layout_weight="0.5" />
<TextView
android:id="@+id/date"
- android:layout_width="wrap_content"
+ android:layout_width="0dp"
android:layout_height="wrap_content"
- android:layout_weight="1"
android:fontFamily="sans-serif-light"
android:gravity="right|center_vertical"
- android:text="Jan 01, 12:00"
+ android:singleLine="true"
+ android:ellipsize="none"
+ android:text="Jan 01, 12:00, 1970"
android:textColor="?headlineSecondaryTextColor"
- android:textSize="12sp" />
- </LinearLayout>
+ android:textSize="12sp"
+ android:layout_weight="0.5" />
+ </TableRow>
- <FrameLayout
- android:id="@+id/flavorImageHolder"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:padding="10dp" >
+ <TableRow
+ android:layout_width="fill_parent"
+ android:layout_height="wrap_content">
- <org.fox.ttrss.util.EnlargingImageView
- android:id="@+id/flavor_image"
+ <FrameLayout
+ android:id="@+id/flavorImageHolder"
android:layout_width="match_parent"
android:layout_height="wrap_content"
- android:layout_gravity="center"
- android:adjustViewBounds="true"
- android:background="@drawable/flavor_image_border"
- android:scaleType="fitCenter"
- android:cropToPadding="true"
- android:padding="2dp"
- android:visibility="gone" />
- </FrameLayout>
-
- <TextView
- android:id="@+id/excerpt"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:lineSpacingExtra="2sp"
- android:paddingTop="3dp"
- android:text="Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua."
- android:textColor="?headlineExcerptTextColor"
- android:textSize="13sp" />
-
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:gravity="center_vertical" >
-
- <CheckBox
- android:id="@+id/selected"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_weight="0"
- android:focusable="false" />
+ android:padding="10dp"
+ android:layout_span="2">
+
+ <org.fox.ttrss.util.EnlargingImageView
+ android:id="@+id/flavor_image"
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content"
+ android:layout_gravity="center"
+ android:adjustViewBounds="true"
+ android:background="@drawable/flavor_image_border"
+ android:scaleType="fitCenter"
+ android:cropToPadding="true"
+ android:padding="2dp"
+ android:visibility="visible" />
+ </FrameLayout>
+ </TableRow>
+
+ <TableRow
+ android:layout_width="fill_parent"
+ android:layout_height="wrap_content">
<TextView
- android:id="@+id/author"
- android:layout_width="wrap_content"
+ android:id="@+id/excerpt"
+ android:layout_width="match_parent"
android:layout_height="match_parent"
- android:layout_weight="1"
- android:ellipsize="end"
- android:fontFamily="sans-serif-light"
- android:gravity="center_vertical"
- android:singleLine="true"
- android:text="by Author"
- android:textColor="?headlineSecondaryTextColor"
- android:textSize="12sp"
- android:textStyle="italic" />
-
- <ImageView
- android:id="@+id/marked"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_marginRight="8dp"
- android:layout_weight="0"
- android:clickable="true"
- android:src="@drawable/ic_star_empty" />
-
- <ImageView
- android:id="@+id/published"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_marginRight="6dp"
- android:layout_weight="0"
- android:clickable="true"
- android:src="@drawable/ic_unpublished" />
-
- <ImageView
- android:id="@+id/article_menu_button"
- android:layout_width="wrap_content"
+ android:lineSpacingExtra="2sp"
+ android:paddingTop="3dp"
+ android:text="Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua."
+ android:textColor="?headlineExcerptTextColor"
+ android:textSize="13sp"
+ android:layout_span="2" />
+ </TableRow>
+
+ <TableRow
+ android:layout_width="fill_parent"
+ android:layout_height="wrap_content">
+
+ <LinearLayout
+ android:layout_width="match_parent"
android:layout_height="wrap_content"
- android:layout_weight="0"
- android:paddingLeft="6dp"
- android:paddingRight="6dp"
- android:src="@drawable/ic_action_overflow" />
- </LinearLayout>
- </LinearLayout>
+ android:gravity="center_vertical"
+ android:layout_span="2">
+
+ <CheckBox
+ android:id="@+id/selected"
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:layout_weight="0"
+ android:focusable="false" />
+
+ <TextView
+ android:id="@+id/author"
+ android:layout_width="wrap_content"
+ android:layout_height="match_parent"
+ android:layout_weight="1"
+ android:ellipsize="end"
+ android:fontFamily="sans-serif-light"
+ android:gravity="center_vertical"
+ android:singleLine="true"
+ android:text="by Author"
+ android:textColor="?headlineSecondaryTextColor"
+ android:textSize="12sp"
+ android:textStyle="italic" />
+
+ <ImageView
+ android:id="@+id/marked"
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:layout_marginRight="8dp"
+ android:layout_weight="0"
+ android:clickable="true"
+ android:src="@drawable/ic_star_empty" />
+
+ <ImageView
+ android:id="@+id/published"
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:layout_marginRight="6dp"
+ android:layout_weight="0"
+ android:clickable="true"
+ android:src="@drawable/ic_unpublished" />
+
+ <ImageView
+ android:id="@+id/article_menu_button"
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:layout_weight="0"
+ android:paddingLeft="6dp"
+ android:paddingRight="6dp"
+ android:src="@drawable/ic_action_overflow" />
+ </LinearLayout>
+ </TableRow>
+ </TableLayout>
</android.support.v7.widget.CardView> \ No newline at end of file