blob: 8760ff06b69fa2ee4ec1f62b1f7689f1b76403b3 [file] [log] [blame]
<?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_weight="1">
<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"/>
<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>
<ImageButton android:id="@+id/btn_play"
style="@style/ReviewControlIcon"
android:layout_centerInParent="true"
android:src="@drawable/btn_ic_review_play"
android:visibility="gone"
android:onClick="onPlayButtonClicked"/>
<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"/>
</com.android.camera.PreviewFrameLayout>