70 lines
2.7 KiB
XML
70 lines
2.7 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<!--
|
|
Copyright (C) 2013 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.
|
|
-->
|
|
|
|
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:id="@+id/camera_layout_root"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent" >
|
|
|
|
<com.android.camera.ui.FilmStripView
|
|
android:id="@+id/filmstrip_view"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:clipToPadding="false" />
|
|
|
|
<!--com.android.camera.ui.FitSystemUiFrameLayout-->
|
|
<FrameLayout
|
|
android:id="@+id/camera_above_filmstrip_layout"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent" >
|
|
|
|
<include layout="@layout/filmstrip_bottom_controls" />
|
|
|
|
<LinearLayout
|
|
android:id="@+id/pano_stitching_progress_panel"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="bottom|center_horizontal"
|
|
android:paddingBottom="52dp"
|
|
android:paddingLeft="5dp"
|
|
android:paddingRight="5dp"
|
|
android:paddingTop="5dp"
|
|
android:visibility="gone"
|
|
android:orientation="vertical">
|
|
|
|
<TextView
|
|
android:id="@+id/pano_stitching_progress_text"
|
|
android:text="@string/rendering_photo_sphere"
|
|
android:textColor="@color/white"
|
|
android:textSize="14sp"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:visibility="visible"
|
|
android:layout_gravity="right"/>
|
|
|
|
<ProgressBar
|
|
android:id="@+id/pano_stitching_progress_bar"
|
|
style="@android:style/Widget.Material.Light.ProgressBar.Horizontal"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:visibility="visible"
|
|
android:layout_gravity="bottom|center_horizontal" />
|
|
</LinearLayout>
|
|
</FrameLayout>
|
|
<!--/com.android.camera.ui.FitSystemUiFrameLayout-->
|
|
|
|
</FrameLayout>
|