mirror of
https://github.com/sifacaii/VlcJellyfin
synced 2025-06-03 00:58:06 -04:00
22 lines
765 B
XML
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> |