26 lines
959 B
XML
26 lines
959 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_margin="3dp"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
tools:ignore="UseCompoundDrawables">
|
|
|
|
<ImageView
|
|
android:id="@+id/iv_arrow"
|
|
android:layout_width="18dp"
|
|
android:layout_height="18dp"
|
|
android:layout_gravity="center_vertical"
|
|
android:src="@drawable/ic_keyboard_arrow_right"
|
|
android:contentDescription="@string/arrow" />
|
|
|
|
<TextView
|
|
android:id="@+id/tv_name"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:drawablePadding="10sp"
|
|
android:gravity="center_vertical"
|
|
tools:text="@string/app_name"
|
|
android:textSize="18sp"
|
|
android:drawableStart="@drawable/ic_folder" />
|
|
</LinearLayout> |