2014-10-16 20:06:56 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2014-10-24 09:43:16 +00:00
|
|
|
<android.support.v7.widget.CardView
|
|
|
|
xmlns:card_view="http://schemas.android.com/apk/res-auto"
|
2014-10-16 20:06:56 +00:00
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
2014-10-24 09:43:16 +00:00
|
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
2014-10-16 20:06:56 +00:00
|
|
|
android:id="@+id/headlines_row"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2014-11-13 14:01:34 +00:00
|
|
|
card_view:cardElevation="2dp"
|
2014-11-13 13:18:07 +00:00
|
|
|
card_view:cardUseCompatPadding="true"
|
2014-10-24 09:43:16 +00:00
|
|
|
card_view:cardBackgroundColor="?headlineNormalBackground"
|
2014-10-16 20:06:56 +00:00
|
|
|
tools:ignore="HardcodedText" >
|
|
|
|
|
2014-10-24 21:27:26 +00:00
|
|
|
<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">
|
2014-10-16 20:06:56 +00:00
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/title"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:gravity="center_vertical"
|
|
|
|
android:singleLine="false"
|
|
|
|
android:text="Sample entry title"
|
2014-10-24 21:27:26 +00:00
|
|
|
android:textColor="?headlineUnreadTextColor"
|
|
|
|
android:textSize="18sp"
|
|
|
|
android:paddingBottom="4dp"
|
|
|
|
android:layout_span="2" />
|
|
|
|
</TableRow>
|
|
|
|
|
|
|
|
<TableRow
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content">
|
2014-10-16 20:06:56 +00:00
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/feed_title"
|
2014-10-24 21:27:26 +00:00
|
|
|
android:layout_width="0dp"
|
2014-10-16 20:06:56 +00:00
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:ellipsize="end"
|
2014-10-24 21:27:26 +00:00
|
|
|
android:fontFamily="sans-serif-light"
|
2014-10-16 20:06:56 +00:00
|
|
|
android:gravity="center_vertical"
|
|
|
|
android:singleLine="true"
|
2014-10-24 21:27:26 +00:00
|
|
|
android:text="Example Feed AAA AAA AAAAAA AAAA AAAAA AA A A AA AA"
|
2014-10-16 20:06:56 +00:00
|
|
|
android:textColor="?headlineSecondaryTextColor"
|
2014-10-24 21:27:26 +00:00
|
|
|
android:textSize="12sp"
|
|
|
|
android:layout_weight="0.5" />
|
2014-10-16 20:06:56 +00:00
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/date"
|
2014-10-24 21:27:26 +00:00
|
|
|
android:layout_width="0dp"
|
2014-10-16 20:06:56 +00:00
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:fontFamily="sans-serif-light"
|
2014-10-24 21:27:26 +00:00
|
|
|
android:gravity="right|center_vertical"
|
|
|
|
android:singleLine="true"
|
|
|
|
android:ellipsize="none"
|
|
|
|
android:text="Jan 01, 12:00, 1970"
|
2014-10-16 20:06:56 +00:00
|
|
|
android:textColor="?headlineSecondaryTextColor"
|
2014-10-24 21:27:26 +00:00
|
|
|
android:textSize="12sp"
|
|
|
|
android:layout_weight="0.5" />
|
|
|
|
</TableRow>
|
2014-10-16 20:06:56 +00:00
|
|
|
|
2014-10-24 21:27:26 +00:00
|
|
|
<TableRow
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content">
|
2014-10-16 20:06:56 +00:00
|
|
|
|
2014-10-24 21:27:26 +00:00
|
|
|
<FrameLayout
|
|
|
|
android:id="@+id/flavorImageHolder"
|
2014-10-16 20:06:56 +00:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2014-10-28 18:04:41 +00:00
|
|
|
android:paddingBottom="4dp"
|
2014-10-24 21:27:26 +00:00
|
|
|
android:layout_span="2">
|
|
|
|
|
2014-10-28 18:58:56 +00:00
|
|
|
<ProgressBar
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="center"
|
|
|
|
android:id="@+id/flavorImageLoadingBar" />
|
|
|
|
|
2014-10-24 21:27:26 +00:00
|
|
|
<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:scaleType="fitCenter"
|
|
|
|
android:cropToPadding="true"
|
|
|
|
android:visibility="visible" />
|
2014-10-29 05:59:33 +00:00
|
|
|
|
2014-10-29 13:23:07 +00:00
|
|
|
<org.fox.ttrss.util.ArrowRight
|
|
|
|
android:layout_marginRight="4dp"
|
|
|
|
android:id="@+id/flavorImageArrow"
|
|
|
|
android:layout_width="64dp"
|
|
|
|
android:layout_gravity="center|right"
|
|
|
|
android:visibility="gone"
|
|
|
|
android:layout_height="64dp" />
|
2014-10-24 21:27:26 +00:00
|
|
|
</FrameLayout>
|
|
|
|
</TableRow>
|
|
|
|
|
|
|
|
<TableRow
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content">
|
2014-10-16 20:06:56 +00:00
|
|
|
|
|
|
|
<TextView
|
2014-10-24 21:27:26 +00:00
|
|
|
android:id="@+id/excerpt"
|
|
|
|
android:layout_width="match_parent"
|
2014-10-16 20:06:56 +00:00
|
|
|
android:layout_height="match_parent"
|
2014-10-24 21:27:26 +00:00
|
|
|
android:lineSpacingExtra="2sp"
|
|
|
|
android:paddingTop="3dp"
|
2014-11-13 19:02:59 +00:00
|
|
|
android:maxLines="5"
|
|
|
|
android:ellipsize="end"
|
2014-10-24 21:27:26 +00:00
|
|
|
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>
|
2014-10-16 20:06:56 +00:00
|
|
|
|
2014-10-24 21:27:26 +00:00
|
|
|
<TableRow
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content">
|
|
|
|
|
|
|
|
<LinearLayout
|
2014-10-31 11:11:47 +00:00
|
|
|
android:id="@+id/headline_footer"
|
2014-10-24 21:27:26 +00:00
|
|
|
android:layout_width="match_parent"
|
2014-10-16 20:06:56 +00:00
|
|
|
android:layout_height="wrap_content"
|
2014-10-24 21:27:26 +00:00
|
|
|
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"
|
2014-11-09 12:42:02 +00:00
|
|
|
android:layout_width="wrap_content"
|
2014-10-31 09:02:46 +00:00
|
|
|
android:layout_height="16dp"
|
2014-11-09 12:42:02 +00:00
|
|
|
android:paddingLeft="4dp"
|
|
|
|
android:paddingRight="4dp"
|
2014-10-24 21:27:26 +00:00
|
|
|
android:layout_weight="0"
|
|
|
|
android:clickable="true"
|
|
|
|
android:src="@drawable/ic_star_empty" />
|
|
|
|
|
|
|
|
<ImageView
|
|
|
|
android:id="@+id/published"
|
2014-11-09 12:42:02 +00:00
|
|
|
android:layout_width="wrap_content"
|
2014-10-31 09:02:46 +00:00
|
|
|
android:layout_height="16dp"
|
2014-11-09 12:42:02 +00:00
|
|
|
android:paddingLeft="4dp"
|
|
|
|
android:paddingRight="4dp"
|
2014-10-24 21:27:26 +00:00
|
|
|
android:layout_weight="0"
|
|
|
|
android:clickable="true"
|
|
|
|
android:src="@drawable/ic_unpublished" />
|
|
|
|
|
|
|
|
<ImageView
|
|
|
|
android:id="@+id/article_menu_button"
|
|
|
|
android:layout_width="wrap_content"
|
2014-10-31 09:10:53 +00:00
|
|
|
android:layout_height="16dp"
|
2014-10-24 21:27:26 +00:00
|
|
|
android:layout_weight="0"
|
2014-11-09 12:42:02 +00:00
|
|
|
android:paddingLeft="4dp"
|
|
|
|
android:paddingRight="4dp"
|
2014-10-24 21:27:26 +00:00
|
|
|
android:src="@drawable/ic_action_overflow" />
|
|
|
|
</LinearLayout>
|
|
|
|
</TableRow>
|
|
|
|
</TableLayout>
|
2014-10-16 20:06:56 +00:00
|
|
|
|
2014-10-24 09:43:16 +00:00
|
|
|
</android.support.v7.widget.CardView>
|