summaryrefslogtreecommitdiffstats
path: root/packages/SystemUI/res/layout-land/status_bar_recent_panel.xml
diff options
context:
space:
mode:
authorMichael Jurka <mikejurka@google.com>2011-11-13 13:50:38 -0800
committerMichael Jurka <mikejurka@google.com>2011-11-14 23:49:10 -0800
commitbfd24acd318ef958bb7997c9cbf95c5fb15b10ac (patch)
tree41e93afbac6ee62c19f7447d122298b46f92cb9a /packages/SystemUI/res/layout-land/status_bar_recent_panel.xml
parent2af9f21c664d4579b5f51283a320a7d1fba13a75 (diff)
downloadframeworks_base-bfd24acd318ef958bb7997c9cbf95c5fb15b10ac.zip
frameworks_base-bfd24acd318ef958bb7997c9cbf95c5fb15b10ac.tar.gz
frameworks_base-bfd24acd318ef958bb7997c9cbf95c5fb15b10ac.tar.bz2
Updating recent apps visuals on tablet
- getting rid of blue glow (5529032) - moving app icon position - show message if there are no recent apps (5533332) - fixing rare IllegalStateException on orientation change (5584344) Change-Id: I2210e584957869c8f02339e6841daf39364a9dad
Diffstat (limited to 'packages/SystemUI/res/layout-land/status_bar_recent_panel.xml')
-rw-r--r--packages/SystemUI/res/layout-land/status_bar_recent_panel.xml36
1 files changed, 13 insertions, 23 deletions
diff --git a/packages/SystemUI/res/layout-land/status_bar_recent_panel.xml b/packages/SystemUI/res/layout-land/status_bar_recent_panel.xml
index 3ee9e77..180f022 100644
--- a/packages/SystemUI/res/layout-land/status_bar_recent_panel.xml
+++ b/packages/SystemUI/res/layout-land/status_bar_recent_panel.xml
@@ -33,39 +33,29 @@
android:clipToPadding="false"
android:clipChildren="false">
- <LinearLayout android:id="@+id/recents_glow"
+ <com.android.systemui.recent.RecentsHorizontalScrollView android:id="@+id/recents_container"
android:layout_width="wrap_content"
android:layout_height="match_parent"
- android:layout_gravity="bottom|right"
+ android:layout_marginRight="@dimen/status_bar_recents_right_glow_margin"
+ android:divider="@null"
+ android:stackFromBottom="true"
+ android:fadingEdge="horizontal"
+ android:scrollbars="none"
+ android:fadingEdgeLength="@dimen/status_bar_recents_fading_edge_length"
+ android:layout_gravity="bottom|left"
android:orientation="horizontal"
android:clipToPadding="false"
- android:clipChildren="false"
- >
- <com.android.systemui.recent.RecentsHorizontalScrollView android:id="@+id/recents_container"
+ android:clipChildren="false">
+
+ <LinearLayout android:id="@+id/recents_linear_layout"
android:layout_width="wrap_content"
android:layout_height="match_parent"
- android:layout_marginRight="@dimen/status_bar_recents_right_glow_margin"
- android:divider="@null"
- android:stackFromBottom="true"
- android:fadingEdge="horizontal"
- android:scrollbars="none"
- android:fadingEdgeLength="@dimen/status_bar_recents_fading_edge_length"
- android:layout_gravity="bottom|left"
android:orientation="horizontal"
android:clipToPadding="false"
android:clipChildren="false">
+ </LinearLayout>
- <LinearLayout android:id="@+id/recents_linear_layout"
- android:layout_width="wrap_content"
- android:layout_height="match_parent"
- android:orientation="horizontal"
- android:clipToPadding="false"
- android:clipChildren="false">
- </LinearLayout>
-
- </com.android.systemui.recent.RecentsHorizontalScrollView>
-
- </LinearLayout>
+ </com.android.systemui.recent.RecentsHorizontalScrollView>
</FrameLayout>