|
1
2
|
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
3
|
android:layout_width="match_parent"
|
|
4
5
6
|
android:layout_height="match_parent"
android:background="@color/Black"
android:orientation="vertical" >
|
|
7
|
|
|
8
9
10
11
12
|
<io.vov.vitamio.widget.CenterLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/Black"
android:orientation="vertical" >
|
|
13
|
|
|
14
15
16
17
18
19
20
21
22
|
<io.vov.vitamio.widget.VideoView
android:id="@+id/VideoView1"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_centerHorizontal="true"
android:layout_centerVertical="true" />
</io.vov.vitamio.widget.CenterLayout>
</LinearLayout>
|