2016-05-13 15:45:36 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2020-04-26 02:18:29 +02:00
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
|
|
android:layout_width="match_parent"
|
2016-05-13 15:45:36 +02:00
|
|
|
android:layout_height="wrap_content"
|
2020-04-26 02:18:29 +02:00
|
|
|
android:gravity="center"
|
|
|
|
android:orientation="vertical"
|
|
|
|
android:padding="16dp">
|
2016-05-13 15:45:36 +02:00
|
|
|
|
2019-10-29 06:51:46 +01:00
|
|
|
<androidx.appcompat.widget.AppCompatImageView
|
2016-05-13 15:45:36 +02:00
|
|
|
android:id="@+id/image_view"
|
|
|
|
android:layout_width="128dp"
|
|
|
|
android:layout_height="128dp"
|
2020-04-26 02:18:29 +02:00
|
|
|
tools:src="@drawable/ic_file_download_white_24dp"/>
|
2016-05-13 15:45:36 +02:00
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/text_label"
|
|
|
|
style="@style/TextAppearance.Medium.Body2.Hint"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2020-04-26 02:18:29 +02:00
|
|
|
android:layout_margin="16dp"
|
|
|
|
android:gravity="center"
|
|
|
|
tools:text="Label" />
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:id="@+id/actions_container"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2018-01-01 14:57:20 +01:00
|
|
|
android:gravity="center"
|
2020-04-26 02:18:29 +02:00
|
|
|
android:orientation="vertical" />
|
2016-05-13 15:45:36 +02:00
|
|
|
|
2020-04-26 02:18:29 +02:00
|
|
|
</LinearLayout>
|