activity_main.xml
1    <?xml version="1.0" encoding="utf-8"?>
2    <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
3        xmlns:app="http://schemas.android.com/apk/res-auto"
4        xmlns:tools="http://schemas.android.com/tools"
5        android:id="@+id/relativeLayout"
6        android:layout_width="match_parent"
7        android:layout_height="match_parent"
8        android:background="@color/colorPrimaryDark">
9    
10       <ImageView
11           android:layout_width="wrap_content"
12           android:layout_height="wrap_content"
13           android:contentDescription="@string/todo"
14           android:scaleType="fitCenter"
15           android:src="@drawable/secondary"
16           app:layout_constraintEnd_toEndOf="parent"
17           app:layout_constraintStart_toStartOf="parent"
18           app:layout_constraintTop_toTopOf="parent" />
19   
20   
21       <VideoView
22           android:id="@+id/videoView1"
23           android:layout_width="match_parent"
24           android:layout_height="match_parent"
25           android:visibility="invisible" />
26   </androidx.constraintlayout.widget.ConstraintLayout>
27