blob: d8d2e4fbc5db8915256a4a1a2327eef6021d2120 [file] [log] [blame]
Alan Viverettecc0e7822013-08-06 13:53:58 -07001<?xml version="1.0" encoding="utf-8"?>
2<!--
3 Copyright (C) 2013 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
Fan Zhangdb3fca12019-05-15 13:13:10 -070018<FrameLayout
19 xmlns:android="http://schemas.android.com/apk/res/android"
20 android:id="@+id/preview_viewport"
21 android:clipToPadding="true"
22 android:clipChildren="true"
Alan Viverettecc0e7822013-08-06 13:53:58 -070023 android:layout_width="match_parent"
Fan Zhangdb3fca12019-05-15 13:13:10 -070024 android:layout_height="wrap_content">
25
26 <ImageView
27 android:layout_width="match_parent"
28 android:layout_height="@dimen/captioning_preview_height"
29 android:contentDescription="@null"
30 android:scaleType="centerCrop"
31 android:src="@drawable/caption_background"/>
Alan Viverettecc0e7822013-08-06 13:53:58 -070032
33 <FrameLayout
Fan Zhangdb3fca12019-05-15 13:13:10 -070034 android:id="@+id/preview_window"
Alan Viverettecc0e7822013-08-06 13:53:58 -070035 android:layout_width="match_parent"
Fan Zhangdb3fca12019-05-15 13:13:10 -070036 android:layout_height="wrap_content"
37 android:layout_gravity="bottom|start"
38 android:padding="16dp">
Alan Viverettecc0e7822013-08-06 13:53:58 -070039
Fan Zhangdb3fca12019-05-15 13:13:10 -070040 <com.android.internal.widget.SubtitleView
41 android:id="@+id/preview_text"
42 android:layout_width="wrap_content"
Alan Viverettecc0e7822013-08-06 13:53:58 -070043 android:layout_height="wrap_content"
Fan Zhangdb3fca12019-05-15 13:13:10 -070044 android:text="@string/captioning_preview_text"/>
Alan Viverettecc0e7822013-08-06 13:53:58 -070045 </FrameLayout>
Fan Zhangdb3fca12019-05-15 13:13:10 -070046</FrameLayout>