48 lines
1.5 KiB
XML
48 lines
1.5 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="@dimen/item_h"
|
|
android:background="@drawable/item_bg"
|
|
android:clickable="true"
|
|
android:orientation="vertical"
|
|
>
|
|
|
|
<androidx.appcompat.widget.AppCompatImageView
|
|
android:id="@+id/image"
|
|
android:layout_width="@dimen/icon_size"
|
|
android:layout_height="@dimen/icon_size"
|
|
android:layout_centerVertical="true"
|
|
android:layout_marginLeft="16dp"
|
|
app:srcCompat="@drawable/ic_ftp"
|
|
/>
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_centerVertical="true"
|
|
android:layout_marginLeft="16dp"
|
|
android:layout_marginRight="16dp"
|
|
android:layout_toRightOf="@+id/image"
|
|
android:orientation="vertical"
|
|
>
|
|
|
|
<TextView
|
|
android:id="@+id/title"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:textColor="@color/colorAccent"
|
|
android:textSize="@dimen/text_size_normal"
|
|
/>
|
|
|
|
<TextView
|
|
android:id="@+id/desc"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="4dp"
|
|
android:textColor="@color/text_black"
|
|
android:textSize="@dimen/text_size_smallest"
|
|
/>
|
|
</LinearLayout>
|
|
|
|
</RelativeLayout> |