mirror of
https://codeberg.org/Freeyourgadget/Gadgetbridge
synced 2024-11-14 05:59:26 +01:00
50 lines
1.8 KiB
XML
50 lines
1.8 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:background="?android:attr/activatedBackgroundIndicator"
|
|
android:padding="4dp">
|
|
|
|
<ImageView
|
|
android:id="@+id/item_preview"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_alignParentStart="false"
|
|
android:layout_alignParentTop="true"
|
|
android:layout_centerHorizontal="true"
|
|
android:contentDescription="Item preview" />
|
|
|
|
<ImageView
|
|
android:id="@+id/item_image"
|
|
android:layout_width="24dp"
|
|
android:layout_height="24dp"
|
|
android:layout_below="@+id/item_preview"
|
|
android:contentDescription="@string/candidate_item_device_image" />
|
|
|
|
<LinearLayout
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_centerVertical="true"
|
|
android:layout_below="@+id/item_preview"
|
|
android:orientation="vertical"
|
|
android:paddingStart="4dp"
|
|
android:paddingEnd="4dp">
|
|
|
|
<TextView
|
|
android:id="@+id/item_name"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:scrollHorizontally="false"
|
|
|
|
style="@style/Base.TextAppearance.AppCompat.Body1"
|
|
android:text="Item Name" />
|
|
|
|
<TextView
|
|
android:id="@+id/item_details"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
style="@style/Base.TextAppearance.AppCompat.Body2"
|
|
android:text="Item Description" />
|
|
</LinearLayout>
|
|
|
|
</RelativeLayout> |