summaryrefslogtreecommitdiff
path: root/app/src/main/res/layout/itemdescription_listitem.xml
blob: ca8f974bf986d3d7800bec2ed2e4b28e40601d55 (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
<?xml version="1.0" encoding="utf-8"?>

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical"
    tools:background="@android:color/holo_orange_light">

    <TextView
        android:id="@+id/txtvTitle"
        style="@style/AntennaPod.TextView.ListItemPrimaryTitle"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_margin="16dp"
        tools:text="Feed item title"
        tools:background="@android:color/holo_green_dark" />

    <TextView
        android:id="@+id/txtvDescription"
        style="@style/AntennaPod.TextView.ListItemSecondaryTitle"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_marginBottom="16dp"
        android:layout_marginLeft="16dp"
        android:layout_marginRight="16dp"
        android:lines="3"
        tools:text="Feed item description"
        tools:background="@android:color/holo_green_dark" />
</LinearLayout>