summaryrefslogtreecommitdiff
path: root/res/layout-w1024dp/preview_frame_video.xml
blob: f3ef82a97e4ead4a6b42145aede9047faac21965 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
<?xml version="1.0" encoding="utf-8"?>
<!-- Copyright (C) 2010 The Android Open Source Project

     Licensed under the Apache License, Version 2.0 (the "License");
     you may not use this file except in compliance with the License.
     You may obtain a copy of the License at

          http://www.apache.org/licenses/LICENSE-2.0

     Unless required by applicable law or agreed to in writing, software
     distributed under the License is distributed on an "AS IS" BASIS,
     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     See the License for the specific language governing permissions and
     limitations under the License.
-->

<com.android.camera.PreviewFrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
        android:id="@+id/frame_layout"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_toLeftOf="@id/control_panel">
    <RelativeLayout android:id="@+id/frame"
            android:layout_width="match_parent"
            android:layout_height="match_parent">
        <SurfaceView android:id="@+id/camera_preview"
                android:layout_width="match_parent"
                android:layout_height="match_parent"/>
        <include layout="@layout/review_thumbnail"/>
        <LinearLayout android:id="@+id/labels"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_alignParentTop="true"
                android:layout_alignParentRight="true">
            <TextView android:id="@+id/time_lapse_label"
                    android:text="@string/time_lapse_title"
                    style="@style/OnViewfinderLabel"
                    android:visibility="gone"/>
            <TextView android:id="@+id/recording_time"
                    style="@style/OnViewfinderLabel"
                    android:gravity="center"
                    android:drawableLeft="@drawable/ic_recording_indicator_small"
                    android:drawablePadding="5dp"
                    android:visibility="gone"/>
        </LinearLayout>
        <TextView android:id="@+id/zoom_ratio"
                style="@style/OnViewfinderLabel"
                android:layout_alignParentRight="true"
                android:layout_below="@id/labels"
                android:layout_alignWithParentIfMissing="true"
                android:visibility="invisible"/>
        <include layout="@layout/review_control"/>
        <LinearLayout
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_centerInParent="true"
                android:background="@drawable/bg_text_on_preview"
                android:visibility="gone">
            <ImageView style="@style/ReviewControlIcon"
                    android:id="@+id/btn_play"
                    android:paddingTop="10dp"
                    android:paddingBottom="10dp"
                    android:src="@drawable/btn_ic_review_play"/>
        </LinearLayout>
        <ImageView android:id="@+id/review_image"
                android:layout_width="match_parent"
                android:layout_height="match_parent"
                android:visibility="gone"
                android:background="@android:color/black"/>
    </RelativeLayout>
    <!-- This is the border of preview and the corner is round. If it is the background,
         preview will be on top and the inner corner will be square, which looks bad.
         So this is put in the end of layout to keep corner round. -->
    <ImageView android:id="@+id/preview_border"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:background="@drawable/border_preview_holo"/>
</com.android.camera.PreviewFrameLayout>