diff options
author | Angus Kong <shkong@google.com> | 2011-09-12 05:25:15 +0800 |
---|---|---|
committer | Angus Kong <shkong@google.com> | 2011-09-12 07:50:25 +0800 |
commit | bfb958a707ce0e08d2142c81a278ec12b61083e0 (patch) | |
tree | 90163bbb2375ace289ca1a1f1000fe01191b9447 /res/layout | |
parent | e164996caf656a9b966e828dee5296c5b328f364 (diff) | |
download | LegacyCamera-bfb958a707ce0e08d2142c81a278ec12b61083e0.zip LegacyCamera-bfb958a707ce0e08d2142c81a278ec12b61083e0.tar.gz LegacyCamera-bfb958a707ce0e08d2142c81a278ec12b61083e0.tar.bz2 |
Replace the custom dialog with system dialog.
Change-Id: Iabeeb6f4912e0f13a6691b9fd08507e7d5791c2c
Diffstat (limited to 'res/layout')
-rw-r--r-- | res/layout/pano_capture.xml | 1 | ||||
-rw-r--r-- | res/layout/pano_dialog_view.xml | 53 |
2 files changed, 0 insertions, 54 deletions
diff --git a/res/layout/pano_capture.xml b/res/layout/pano_capture.xml index 2246fdd..23e20e1 100644 --- a/res/layout/pano_capture.xml +++ b/res/layout/pano_capture.xml @@ -61,5 +61,4 @@ android:visibility="gone" android:layout_centerInParent="true" /> - <include layout="@layout/pano_dialog_view" /> </RelativeLayout> diff --git a/res/layout/pano_dialog_view.xml b/res/layout/pano_dialog_view.xml deleted file mode 100644 index 288d00f..0000000 --- a/res/layout/pano_dialog_view.xml +++ /dev/null @@ -1,53 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<!-- Copyright (C) 2011 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. ---> - -<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" - android:id="@+id/pano_preview_progress_dialog" - android:visibility="gone" - android:background="#AA000000" - android:layout_width="match_parent" - android:layout_height="match_parent"> - - <ImageView - android:id="@+id/pano_custom_dialog_background" - android:src="@drawable/pano_rounded_rectangle" - android:layout_width="wrap_content" - android:layout_height="wrap_content" - android:layout_centerInParent="true" /> - - <LinearLayout - android:orientation="vertical" - android:layout_width="wrap_content" - android:layout_height="wrap_content" - android:layout_centerInParent="true"> - - <ProgressBar - android:layout_width="wrap_content" - android:layout_height="@dimen/pano_custom_dialog_spinner_height" - android:layout_gravity="center_horizontal" /> - - <TextView - style="@style/PanoCustomDialogText" - android:id="@+id/pano_custom_dialog_text_view" - android:text="@string/pano_dialog_prepare_preview" - android:paddingTop="15dp" - android:editable="false" - android:gravity="center" - android:layout_gravity="center_horizontal" - android:layout_width="wrap_content" - android:layout_height="wrap_content" /> - </LinearLayout> -</RelativeLayout> |