diff options
| author | Adam Powell <adamp@google.com> | 2013-05-31 14:39:48 -0700 |
|---|---|---|
| committer | Adam Powell <adamp@google.com> | 2013-05-31 15:00:24 -0700 |
| commit | 04fe6ebb9f919f196ec06a19bebc09b8e943f95b (patch) | |
| tree | c6b80f3a8d5ff34227de7b97395883139787ef38 /core/java/android/view/WindowManagerPolicy.java | |
| parent | c1e0ca9fee17cb56a992ae107d3b1aa534290b2d (diff) | |
Fix a bug resolving the correct icon/logo in action bars
Remove some abstraction-breaking magic in ActionBarView and replace it
with proper resolution of the icon/logo when creating a window. The
old implementation relied on the ActionBarView's context being an
Activity.
Bug 9171554
Change-Id: Idbbb1942622195dcb55e8119f2d64287b07bb509
Diffstat (limited to 'core/java/android/view/WindowManagerPolicy.java')
| -rw-r--r-- | core/java/android/view/WindowManagerPolicy.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/java/android/view/WindowManagerPolicy.java b/core/java/android/view/WindowManagerPolicy.java index 6a35f20ef53f..6291e628698e 100644 --- a/core/java/android/view/WindowManagerPolicy.java +++ b/core/java/android/view/WindowManagerPolicy.java @@ -642,7 +642,7 @@ public interface WindowManagerPolicy { */ public View addStartingWindow(IBinder appToken, String packageName, int theme, CompatibilityInfo compatInfo, CharSequence nonLocalizedLabel, - int labelRes, int icon, int windowFlags); + int labelRes, int icon, int logo, int windowFlags); /** * Called when the first window of an application has been displayed, while |
