diff options
| author | 2011-02-14 15:52:09 -0800 | |
|---|---|---|
| committer | 2011-02-14 15:52:09 -0800 | |
| commit | 55e26aa15038c81bcca054fde1cd8a925d80a953 (patch) | |
| tree | 256ff3b47805626721bf1e77a1dc3c891a2398af | |
| parent | b44cb0ba973126debfac53ce17cc93ec6d9feaea (diff) | |
Fix 3423212: Constrain large app icons to 64x64 in recents.
Change-Id: I3400632b6aec97edad29455961a700db2acea099
| -rw-r--r-- | packages/SystemUI/res/layout-xlarge/status_bar_recent_item.xml | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/packages/SystemUI/res/layout-xlarge/status_bar_recent_item.xml b/packages/SystemUI/res/layout-xlarge/status_bar_recent_item.xml index 3fdfdbbd95ca..c358e13c8f47 100644 --- a/packages/SystemUI/res/layout-xlarge/status_bar_recent_item.xml +++ b/packages/SystemUI/res/layout-xlarge/status_bar_recent_item.xml @@ -40,6 +40,9 @@ android:layout_alignParentTop="true" android:layout_marginLeft="123dip" android:layout_marginTop="16dip" + android:maxWidth="64dip" + android:maxHeight="64dip" + android:adjustViewBounds="true" /> <View android:id="@+id/recents_callout_line" |