2012-07-24 13:54:43 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2014-04-21 12:02:08 +02:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent">
|
2012-07-24 13:54:43 +02:00
|
|
|
|
|
|
|
<ImageView
|
|
|
|
android:id="@+id/imgvFeedimage"
|
2014-02-14 14:26:55 +01:00
|
|
|
android:contentDescription="@string/cover_label"
|
2014-04-21 12:02:08 +02:00
|
|
|
android:layout_width="@dimen/thumbnail_length_itemlist"
|
|
|
|
android:layout_height="@dimen/thumbnail_length_itemlist"
|
2012-07-24 13:54:43 +02:00
|
|
|
android:layout_alignParentLeft="true"
|
|
|
|
android:layout_centerVertical="true"
|
2014-04-21 12:02:08 +02:00
|
|
|
android:scaleType="centerCrop"/>
|
2012-07-24 13:54:43 +02:00
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:layout_centerVertical="true"
|
|
|
|
android:layout_toRightOf="@id/imgvFeedimage"
|
2014-04-21 12:02:08 +02:00
|
|
|
android:orientation="vertical">
|
2012-07-24 13:54:43 +02:00
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/txtvTitle"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2014-04-21 12:02:08 +02:00
|
|
|
android:layout_margin="4dp"
|
|
|
|
android:lines="2"
|
|
|
|
android:ellipsize="end"
|
|
|
|
android:textColor="?android:attr/textColorPrimary"
|
|
|
|
android:textSize="@dimen/text_size_small"/>
|
2012-07-24 13:54:43 +02:00
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/txtvSubtitle"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2014-04-21 12:02:08 +02:00
|
|
|
android:layout_margin="4dp"
|
|
|
|
android:lines="1"
|
|
|
|
android:ellipsize="end"
|
|
|
|
android:textColor="?android:attr/textColorTertiary"
|
|
|
|
android:textSize="@dimen/text_size_small"/>
|
2012-07-24 13:54:43 +02:00
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
</RelativeLayout>
|