summaryrefslogtreecommitdiffstats
path: root/res/layout/photopage_progress_bar.xml
diff options
context:
space:
mode:
authorSascha Haeberling <haeberling@google.com>2013-08-06 11:43:02 -0700
committerSascha Haeberling <haeberling@google.com>2013-08-06 11:43:02 -0700
commit8e963a5a6016d246184ed65906f9d103e92b17e2 (patch)
tree02eb244ea4a20d9aa8e43916a40b876be8935d11 /res/layout/photopage_progress_bar.xml
parent4fc90b07dcf316c7ce6c5313af8202e84bc85603 (diff)
downloadandroid_packages_apps_Snap-8e963a5a6016d246184ed65906f9d103e92b17e2.tar.gz
android_packages_apps_Snap-8e963a5a6016d246184ed65906f9d103e92b17e2.tar.bz2
android_packages_apps_Snap-8e963a5a6016d246184ed65906f9d103e92b17e2.zip
This removes all non-Camera stuff from Camera2.
Note: Camera2 is a clone of Gallery2 right now. Note 2: I will bring .mk files back later. Change-Id: Ida958654296f5ebaacb6bb0ff59d52a7c37ce6fc
Diffstat (limited to 'res/layout/photopage_progress_bar.xml')
-rw-r--r--res/layout/photopage_progress_bar.xml40
1 files changed, 0 insertions, 40 deletions
diff --git a/res/layout/photopage_progress_bar.xml b/res/layout/photopage_progress_bar.xml
deleted file mode 100644
index 778feb365..000000000
--- a/res/layout/photopage_progress_bar.xml
+++ /dev/null
@@ -1,40 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:id="@+id/photopage_progress_bar"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_alignParentBottom="true"
- android:layout_alignParentLeft="true"
- android:padding="25dp"
- android:visibility="invisible">
- <View
- android:id="@+id/photopage_progress_background"
- android:background="#ff000000"
- android:layout_width="match_parent"
- android:layout_height="8dp"
- android:layout_alignParentBottom="true"
- android:visibility="visible"/>
- <View
- android:id="@+id/photopage_progress_foreground"
- android:background="#ff33b5e5"
- android:layout_width="10dp"
- android:layout_height="8dp"
- android:layout_alignParentLeft="true"
- android:layout_alignParentBottom="true"
- android:visibility="visible"/>
- <TextView
- android:id="@+id/photopage_progress_bar_text"
- android:text="@string/pano_progress_text"
- android:textColor="#ffffffff"
- android:textSize="14dp"
- android:shadowColor="#ff000000"
- android:shadowDx="0"
- android:shadowDy="0"
- android:shadowRadius="2"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_alignParentRight="true"
- android:layout_above="@id/photopage_progress_background"
- android:paddingBottom="8dp"
- android:visibility="visible"/>
-</RelativeLayout>