1<?xml version="1.0" encoding="utf-8"?>
2<layout xmlns:android="http://schemas.android.com/apk/res/android"
3 xmlns:app="http://schemas.android.com/apk/res-auto">
4 <LinearLayout
5 android:layout_width="fill_parent"
6 android:layout_height="wrap_content"
7 android:paddingBottom="16dp"
8 android:orientation="vertical">
9
10 <TextView
11 android:id="@+id/label"
12 android:layout_width="match_parent"
13 android:layout_height="wrap_content"
14 android:paddingLeft="8dp"
15 android:paddingRight="8dp"
16 android:paddingBottom="4dp"
17 android:textAppearance="?textAppearanceLabelMedium" />
18
19 <ImageView
20 android:id="@+id/media_image"
21 android:visibility="gone"
22 android:layout_width="wrap_content"
23 android:layout_height="wrap_content"
24 android:layout_marginBottom="4dp"
25 android:layout_marginTop="8dp"
26 android:layout_gravity="center"
27 android:adjustViewBounds="true"
28 android:background="@color/black87"
29 android:longClickable="false"
30 android:scaleType="centerCrop"/>
31
32 <ListView
33 android:id="@+id/values"
34 android:layout_width="fill_parent"
35 android:layout_height="wrap_content"
36 android:layout_alignParentStart="true"
37 android:layout_alignParentLeft="true"
38 android:layout_alignParentTop="true"
39 android:background="?colorSurfaceContainer"
40 android:divider="@android:color/transparent"
41 android:dividerHeight="0dp"></ListView>
42
43 <TextView
44 android:id="@+id/desc"
45 android:layout_width="match_parent"
46 android:layout_height="wrap_content"
47 android:paddingLeft="8dp"
48 android:paddingRight="8dp"
49 android:textAppearance="?textAppearanceBodyMedium" />
50
51 </LinearLayout>
52</layout>