summaryrefslogtreecommitdiff
path: root/app/src/main/res/layout/searchlist_item.xml
blob: b057a966d545c7a5adb108eab73587898809b100 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
                android:layout_width="match_parent"
                android:layout_height="match_parent">

    <ImageView
        android:id="@+id/imgvFeedimage"
        android:contentDescription="@string/cover_label"
        android:layout_width="@dimen/thumbnail_length_itemlist"
        android:layout_height="@dimen/thumbnail_length_itemlist"
        android:layout_alignParentLeft="true"
        android:layout_centerVertical="true"
        android:scaleType="centerCrop"/>

    <LinearLayout
        android:layout_width="wrap_content"
        android:layout_height="match_parent"
        android:layout_centerVertical="true"
        android:layout_toRightOf="@id/imgvFeedimage"
        android:orientation="vertical">

        <TextView
            android:id="@+id/txtvTitle"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_margin="4dp"
            android:lines="2"
            android:ellipsize="end"
            android:textColor="?android:attr/textColorPrimary"
            android:textSize="@dimen/text_size_small"/>

        <TextView
            android:id="@+id/txtvSubtitle"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_margin="4dp"
            android:lines="1"
            android:ellipsize="end"
            android:textColor="?android:attr/textColorTertiary"
            android:textSize="@dimen/text_size_small"/>
    </LinearLayout>

</RelativeLayout>