summaryrefslogtreecommitdiffstats
path: root/packages/SystemUI/res/layout/status_bar_recent_panel.xml
diff options
context:
space:
mode:
authorMichael Jurka <mikejurka@google.com>2011-06-13 10:54:40 -0700
committerMichael Jurka <mikejurka@google.com>2011-06-15 16:50:04 -0700
commit3b1fc47d004f6b29af8f40d181baa3460b1e3b15 (patch)
tree920a9fe99b800ada9f13e7e5482d0c3c6f0df393 /packages/SystemUI/res/layout/status_bar_recent_panel.xml
parentf71e5469441286c6f466043e64a7f6492557cbd9 (diff)
downloadframeworks_base-3b1fc47d004f6b29af8f40d181baa3460b1e3b15.zip
frameworks_base-3b1fc47d004f6b29af8f40d181baa3460b1e3b15.tar.gz
frameworks_base-3b1fc47d004f6b29af8f40d181baa3460b1e3b15.tar.bz2
Port recent apps from tablet to phone
- wire up to long press on home - remove unused recents activity - remove duplicate recents resources in -large directories (using -sw600dp instead) - fix issue with zoom/scale translation when recents was brought up Change-Id: I45538ccaff49b46ac3659c4828f9e2b0cd075241
Diffstat (limited to 'packages/SystemUI/res/layout/status_bar_recent_panel.xml')
-rw-r--r--packages/SystemUI/res/layout/status_bar_recent_panel.xml84
1 files changed, 0 insertions, 84 deletions
diff --git a/packages/SystemUI/res/layout/status_bar_recent_panel.xml b/packages/SystemUI/res/layout/status_bar_recent_panel.xml
deleted file mode 100644
index 703cbc1..0000000
--- a/packages/SystemUI/res/layout/status_bar_recent_panel.xml
+++ /dev/null
@@ -1,84 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!--
-/* apps/common/assets/default/default/skins/StatusBar.xml
-**
-** Copyright 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.systemui.recent.RecentsPanelView
- xmlns:android="http://schemas.android.com/apk/res/android"
- android:id="@+id/recents_root"
- android:layout_height="match_parent"
- android:layout_width="wrap_content">
-
- <FrameLayout
- android:id="@+id/recents_bg_protect"
- android:background="@drawable/recents_bg_protect_tile"
- android:layout_width="wrap_content"
- android:layout_height="match_parent"
- android:layout_alignParentBottom="true"
- android:paddingBottom="@*android:dimen/status_bar_height"
- android:clipToPadding="false"
- android:clipChildren="false">
-
- <LinearLayout android:id="@+id/recents_glow"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_marginBottom="-49dip"
- android:layout_gravity="bottom"
- android:background="@drawable/recents_blue_glow"
- android:orientation="horizontal"
- android:clipToPadding="false"
- android:clipChildren="false"
- >
- <com.android.systemui.recent.RecentsVerticalScrollView android:id="@+id/recents_container"
- android:layout_width="@dimen/status_bar_recents_width"
- android:layout_height="wrap_content"
- android:layout_marginRight="@dimen/status_bar_recents_right_glow_margin"
- android:divider="@null"
- android:stackFromBottom="true"
- android:fadingEdge="vertical"
- android:scrollbars="none"
- android:fadingEdgeLength="20dip"
- android:listSelector="@drawable/recents_thumbnail_bg_selector"
- android:layout_gravity="bottom|left"
- android:clipToPadding="false"
- android:clipChildren="false">
-
- <LinearLayout android:id="@+id/recents_linear_layout"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:orientation="vertical"
- android:clipToPadding="false"
- android:clipChildren="false">
- </LinearLayout>
-
- </com.android.systemui.recent.RecentsVerticalScrollView>
-
-
- </LinearLayout>
-
- </FrameLayout>
-
- <View android:id="@+id/recents_dismiss_button"
- android:layout_width="80px"
- android:layout_height="@*android:dimen/status_bar_height"
- android:layout_alignParentBottom="true"
- android:layout_alignParentLeft="true"
- android:background="@drawable/ic_sysbar_back_ime"
- />
-
-</com.android.systemui.recent.RecentsPanelView>