VlcJellyfin/app/src/main/res/layout/item_text.xml
2023-05-17 17:06:10 +08:00

22 lines
765 B
XML

<?xml version="1.0" encoding="utf-8"?>
<FrameLayout 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="wrap_content"
android:focusable="true"
android:padding="@dimen/vh_padding_border"
android:background="?android:attr/selectableItemBackground">
<ImageView
android:id="@+id/item_icon"
android:layout_width="18dp"
android:layout_height="18dp"
android:scaleType="fitXY"
app:srcCompat="@drawable/icon_img_placeholder" />
<TextView
android:id="@+id/item_title"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
</FrameLayout>