[android-developers] Re: Notification icon from a different package

2010-05-03 Thread Menny
I can only specify the icon resource ID. I can not use Drawable objects. I need some way to (maybe) create a notification of a different Context, or some how USE a Drawable object with Notification On Apr 29, 11:18 pm, Nerdrow troybe...@gmail.com wrote: I can't remember it exactly off-hand, but

[android-developers] Re: Notification icon from a different package

2010-04-29 Thread Nerdrow
I can't remember it exactly off-hand, but if you can get a ResolveInfo for wherever you want to load the icon from, there's a loadIcon method there; I THINK it's ResolveInfo.loadIcon(PackageManager packageManager, Context context), where context = your current context. Search the source for