2018-10-16 04:56:11 +11:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2018-12-18 01:25:35 +11:00
|
|
|
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2019-10-02 02:24:09 +10:00
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
2018-10-16 04:56:11 +11:00
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
2019-10-02 02:24:09 +10:00
|
|
|
android:id="@+id/videoContainer"
|
2018-10-16 04:56:11 +11:00
|
|
|
android:clickable="true"
|
|
|
|
android:focusable="true">
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/mediaDescription"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2019-04-21 01:44:54 +10:00
|
|
|
android:layout_marginTop="?attr/actionBarSize"
|
2018-10-16 04:56:11 +11:00
|
|
|
android:background="#60000000"
|
|
|
|
android:lineSpacingMultiplier="1.1"
|
|
|
|
android:padding="8dp"
|
|
|
|
android:textAlignment="center"
|
|
|
|
android:textColor="#eee"
|
|
|
|
android:textSize="?attr/status_text_medium"
|
2019-10-02 02:24:09 +10:00
|
|
|
app:layout_constraintTop_toTopOf="parent"
|
2018-10-16 04:56:11 +11:00
|
|
|
tools:text="Some media description" />
|
|
|
|
|
2019-10-02 02:24:09 +10:00
|
|
|
<VideoView
|
|
|
|
android:id="@+id/videoView"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
|
|
|
app:layout_constraintLeft_toLeftOf="parent"
|
|
|
|
app:layout_constraintRight_toRightOf="parent"
|
|
|
|
app:layout_constraintTop_toTopOf="parent" />
|
|
|
|
|
2018-10-16 04:56:11 +11:00
|
|
|
<ProgressBar
|
|
|
|
android:id="@+id/progressBar"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2019-10-02 02:24:09 +10:00
|
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
2018-10-16 04:56:11 +11:00
|
|
|
app:layout_constraintLeft_toLeftOf="parent"
|
|
|
|
app:layout_constraintRight_toRightOf="parent"
|
2019-10-02 02:24:09 +10:00
|
|
|
app:layout_constraintTop_toTopOf="parent" />
|
2018-10-16 04:56:11 +11:00
|
|
|
|
2018-12-18 01:25:35 +11:00
|
|
|
</androidx.constraintlayout.widget.ConstraintLayout>
|