2017-01-10 07:14:27 +01:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2018-12-17 15:25:35 +01:00
|
|
|
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2018-05-10 20:13:25 +02:00
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
2018-10-15 19:56:11 +02:00
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
2017-01-10 07:14:27 +01:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
2017-03-14 19:24:38 +01:00
|
|
|
android:layout_gravity="center"
|
2018-05-10 20:13:25 +02:00
|
|
|
android:clickable="true"
|
|
|
|
android:focusable="true">
|
2017-05-07 23:58:56 +02:00
|
|
|
|
2017-05-04 16:16:24 +02:00
|
|
|
<com.github.chrisbanes.photoview.PhotoView
|
2018-10-15 19:56:11 +02:00
|
|
|
android:id="@+id/photoView"
|
2017-01-10 07:14:27 +01:00
|
|
|
android:layout_width="match_parent"
|
2017-05-12 03:31:29 +02:00
|
|
|
android:layout_height="match_parent" />
|
2017-05-10 15:24:45 +02:00
|
|
|
|
|
|
|
<ProgressBar
|
2018-10-15 19:56:11 +02:00
|
|
|
android:id="@+id/progressBar"
|
2017-05-10 15:24:45 +02:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2018-10-15 19:56:11 +02:00
|
|
|
app:layout_constraintLeft_toLeftOf="parent"
|
|
|
|
app:layout_constraintRight_toRightOf="parent"
|
|
|
|
app:layout_constraintTop_toTopOf="parent"
|
|
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
2017-05-10 15:24:45 +02:00
|
|
|
android:layout_centerHorizontal="true"
|
|
|
|
android:layout_centerVertical="true"
|
|
|
|
android:layout_gravity="center" />
|
2017-05-07 23:58:56 +02:00
|
|
|
|
2018-05-10 20:13:25 +02:00
|
|
|
<TextView
|
2018-11-01 14:52:22 +01:00
|
|
|
android:id="@+id/mediaDescription"
|
2018-05-10 20:13:25 +02:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2018-10-15 19:56:11 +02:00
|
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
2018-05-10 20:13:25 +02:00
|
|
|
android:background="#60000000"
|
|
|
|
android:lineSpacingMultiplier="1.1"
|
|
|
|
android:padding="8dp"
|
|
|
|
android:textAlignment="center"
|
|
|
|
android:textColor="#eee"
|
2018-07-09 09:03:24 +02:00
|
|
|
android:textSize="?attr/status_text_medium"
|
2018-05-10 20:13:25 +02:00
|
|
|
tools:text="Some media description" />
|
|
|
|
|
2018-12-17 15:25:35 +01:00
|
|
|
</androidx.constraintlayout.widget.ConstraintLayout>
|