2015-09-04 02:15:03 +02:00
|
|
|
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
tools:context="org.schabi.newpipe.PlayVideoActivity"
|
|
|
|
android:gravity="center">
|
|
|
|
|
|
|
|
<VideoView android:id="@+id/video_view"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
2015-09-20 13:19:28 +02:00
|
|
|
android:layout_gravity="center"
|
|
|
|
android:focusable="false"/>
|
2015-09-04 02:15:03 +02:00
|
|
|
|
|
|
|
<Button android:id="@+id/content_button"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
2015-09-20 13:19:28 +02:00
|
|
|
android:background="@null"
|
|
|
|
android:focusable="false"/>
|
2015-09-04 02:15:03 +02:00
|
|
|
|
|
|
|
<ProgressBar android:id="@+id/play_video_progress_bar"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:indeterminate="true"
|
2015-09-20 13:19:28 +02:00
|
|
|
android:layout_gravity="center"
|
|
|
|
android:focusable="false"/>
|
2015-09-04 02:15:03 +02:00
|
|
|
|
|
|
|
</FrameLayout>
|