27 lines
972 B
XML
27 lines
972 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:orientation="vertical"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent">
|
|
|
|
<TextView
|
|
android:id="@+id/txtvTitle"
|
|
android:layout_margin="8dp"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:lines="1"
|
|
android:ellipsize="end"
|
|
android:textColor="?android:attr/textColorPrimary"
|
|
android:textSize="@dimen/text_size_small"/>
|
|
|
|
<TextView
|
|
android:id="@+id/txtvDescription"
|
|
android:layout_margin="8dp"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:lines="3"
|
|
android:ellipsize="end"
|
|
android:textColor="?android:attr/textColorTertiary"
|
|
android:textSize="@dimen/text_size_micro"/>
|
|
</LinearLayout> |