• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1<?xml version="1.0" encoding="utf-8"?>
2<!--
3  ~ Copyright (C) 2022 The Android Open Source Project
4  ~
5  ~ Licensed under the Apache License, Version 2.0 (the "License");
6  ~ you may not use this file except in compliance with the License.
7  ~ You may obtain a copy of the License at
8  ~
9  ~      http://www.apache.org/licenses/LICENSE-2.0
10  ~
11  ~ Unless required by applicable law or agreed to in writing, software
12  ~ distributed under the License is distributed on an "AS IS" BASIS,
13  ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14  ~ See the License for the specific language governing permissions and
15  ~ limitations under the License.
16  -->
17
18<FrameLayout
19    xmlns:android="http://schemas.android.com/apk/res/android"
20    android:layout_width="match_parent"
21    android:layout_height="match_parent">
22
23    <FrameLayout
24        android:id="@+id/preview_player_container"
25        android:layout_width="match_parent"
26        android:layout_height="match_parent"
27        android:layout_gravity="center">
28
29        <com.google.android.exoplayer2.ui.AspectRatioFrameLayout
30            android:id="@+id/preview_player_frame"
31            android:layout_width="match_parent"
32            android:layout_height="match_parent"
33            android:layout_gravity="center">
34
35            <SurfaceView
36                android:id="@+id/preview_player_view"
37                android:layout_width="match_parent"
38                android:layout_height="match_parent" />
39        </com.google.android.exoplayer2.ui.AspectRatioFrameLayout>
40
41        <FrameLayout
42            android:id="@+id/preview_player_controls"
43            android:layout_width="match_parent"
44            android:layout_height="match_parent"
45            android:layout_gravity="center">
46
47            <include
48                android:layout_width="match_parent"
49                android:layout_height="match_parent"
50                layout="@layout/preview_video_controls" />
51        </FrameLayout>
52    </FrameLayout>
53
54    <ImageView
55        android:id="@+id/preview_video_image"
56        android:layout_width="match_parent"
57        android:layout_height="match_parent"
58        android:layout_gravity="center"
59        android:scaleType="fitCenter"
60        android:contentDescription="@null" />
61</FrameLayout>
62