diff options
author | Michael Jurka <mikejurka@google.com> | 2011-09-02 12:12:15 -0700 |
---|---|---|
committer | Michael Jurka <mikejurka@google.com> | 2011-09-02 14:58:10 -0700 |
commit | c6461ca5a0892d9b5a47649d49af69165e05b87f (patch) | |
tree | 252d81ea7552bc681a803e78c8ecae65b372f859 /packages/SystemUI/res/layout-port | |
parent | 52f159c79e4ed3367a929f4bc34ab3e184f82a15 (diff) | |
download | frameworks_base-c6461ca5a0892d9b5a47649d49af69165e05b87f.zip frameworks_base-c6461ca5a0892d9b5a47649d49af69165e05b87f.tar.gz frameworks_base-c6461ca5a0892d9b5a47649d49af69165e05b87f.tar.bz2 |
Fix regression: recents did not dismiss after launching apps (5252649)
also:
- when using menu to "remove from list" in landscape, animate items upward (5149577)
- dismiss recents when tapping on whitespace regions (5115883)
Change-Id: I0f38c7567281583898a49f572cf92d6c59464649
Diffstat (limited to 'packages/SystemUI/res/layout-port')
-rw-r--r-- | packages/SystemUI/res/layout-port/status_bar_recent_item.xml | 1 | ||||
-rw-r--r-- | packages/SystemUI/res/layout-port/status_bar_recent_panel.xml | 2 |
2 files changed, 1 insertions, 2 deletions
diff --git a/packages/SystemUI/res/layout-port/status_bar_recent_item.xml b/packages/SystemUI/res/layout-port/status_bar_recent_item.xml index 73ca335..84c89f7 100644 --- a/packages/SystemUI/res/layout-port/status_bar_recent_item.xml +++ b/packages/SystemUI/res/layout-port/status_bar_recent_item.xml @@ -33,7 +33,6 @@ android:layout_height="wrap_content" android:layout_alignParentLeft="true" android:layout_alignParentTop="true" - android:clickable="true" android:layout_marginLeft="@dimen/status_bar_recents_thumbnail_left_margin" android:scaleType="center" android:background="@drawable/recents_thumbnail_overlay"> diff --git a/packages/SystemUI/res/layout-port/status_bar_recent_panel.xml b/packages/SystemUI/res/layout-port/status_bar_recent_panel.xml index dd25cf9..ed9ea7a 100644 --- a/packages/SystemUI/res/layout-port/status_bar_recent_panel.xml +++ b/packages/SystemUI/res/layout-port/status_bar_recent_panel.xml @@ -38,6 +38,7 @@ android:orientation="horizontal" android:clipChildren="false" android:layout_marginTop="@*android:dimen/status_bar_height"> + <com.android.systemui.recent.RecentsVerticalScrollView android:id="@+id/recents_container" android:layout_width="match_parent" @@ -62,7 +63,6 @@ </com.android.systemui.recent.RecentsVerticalScrollView> - </LinearLayout> </FrameLayout> |