diff options
author | Michael Jurka <mikejurka@google.com> | 2011-09-30 11:07:30 -0700 |
---|---|---|
committer | Michael Jurka <mikejurka@google.com> | 2011-09-30 16:44:01 -0700 |
commit | 7daf95d5526e3b60f5db29cbacd9a4852d99a6f4 (patch) | |
tree | 07f9ad6cfbc3c05660c95d823c6b3d4d0700f1b8 /packages/SystemUI/res/layout-port | |
parent | 55b039f1b7ecb0439e095082e82c4d4fa2627921 (diff) | |
download | frameworks_base-7daf95d5526e3b60f5db29cbacd9a4852d99a6f4.zip frameworks_base-7daf95d5526e3b60f5db29cbacd9a4852d99a6f4.tar.gz frameworks_base-7daf95d5526e3b60f5db29cbacd9a4852d99a6f4.tar.bz2 |
Fixing accessibility support in Recent Apps
- also switching "Recent applications" to "Recent apps" as per our new language guidelines
Change-Id: Ib625429ad22ce75ede782d59c0f45894d00c8502
Diffstat (limited to 'packages/SystemUI/res/layout-port')
-rw-r--r-- | packages/SystemUI/res/layout-port/status_bar_recent_item.xml | 22 | ||||
-rw-r--r-- | packages/SystemUI/res/layout-port/status_bar_recent_panel.xml | 9 |
2 files changed, 9 insertions, 22 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 586712f..8c82eb1 100644 --- a/packages/SystemUI/res/layout-port/status_bar_recent_item.xml +++ b/packages/SystemUI/res/layout-port/status_bar_recent_item.xml @@ -42,20 +42,16 @@ android:layout_height="@dimen/status_bar_recents_thumbnail_height" android:visibility="invisible" /> + <ImageView android:id="@+id/app_icon" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:layout_marginLeft="@dimen/status_bar_recents_app_icon_left_margin" + android:layout_marginTop="@dimen/status_bar_recents_app_icon_top_margin" + android:maxWidth="@dimen/status_bar_recents_app_icon_max_width" + android:maxHeight="@dimen/status_bar_recents_app_icon_max_height" + android:adjustViewBounds="true" + /> </FrameLayout> - - <ImageView android:id="@+id/app_icon" - android:layout_width="wrap_content" - android:layout_height="wrap_content" - android:layout_alignLeft="@id/app_thumbnail" - android:layout_alignTop="@id/app_thumbnail" - android:layout_marginLeft="@dimen/status_bar_recents_app_icon_left_margin" - android:layout_marginTop="@dimen/status_bar_recents_app_icon_top_margin" - android:maxWidth="@dimen/status_bar_recents_app_icon_max_width" - android:maxHeight="@dimen/status_bar_recents_app_icon_max_height" - android:adjustViewBounds="true" - /> - <TextView android:id="@+id/app_label" android:layout_width="@dimen/status_bar_recents_app_label_width" android:layout_height="wrap_content" 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 4d49077..d040544 100644 --- a/packages/SystemUI/res/layout-port/status_bar_recent_panel.xml +++ b/packages/SystemUI/res/layout-port/status_bar_recent_panel.xml @@ -73,13 +73,4 @@ android:layout_height="match_parent" android:visibility="invisible" /> - <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" - android:visibility="gone" - /> - </com.android.systemui.recent.RecentsPanelView> |