Yeah Toast?
January 20, 2014 6:49 AM   Subscribe

On Android, is there any way to determine the originating app of a toast popup notification? (4.1 ICS Touchwiz stock if that matters.)

On my phone, I periodically get a toast popup notification something to the effect of "Unable to download at this time" but because it happens regardless of what app is running in the foreground I don't know which background app is trying to download something and failing.

Is there a logfile somewhere that verbosely records all toast popups that would tell me the source of these messages?
posted by radwolf76 to Computers & Internet (7 answers total)
 
I believe if you press and hold on the notification, it will tell you the app that issued it.
posted by scolbath at 6:53 AM on January 20, 2014


Best answer: This StackOverflow question has a small code snippet that you could use. Toasts don't normally log but if you extend AccessibilityService you can intercept it, find the sending package, and log it yourself.
posted by JoeZydeco at 6:59 AM on January 20, 2014


Best answer: In the vein of extending Accessibility services, that's how the app Notification History works. It's available in the play store.
posted by nobeagle at 7:06 AM on January 20, 2014 [2 favorites]


I believe if you press and hold on the notification, it will tell you the app that issued it.

You can get the app info from notifications, but not from toasts.
posted by Nonsteroidal Anti-Inflammatory Drug at 7:13 AM on January 20, 2014


Best answer: I don't think it's possible without rooting the phone. If you do go down that route, you could install the Xposed framework and this module which seems to do exactly what you want. I'm pretty sure I saw another thread for a different module that did something similar recently, but I can't seem to find it now.
posted by Venadium at 7:26 AM on January 20, 2014


Best answer: Seconding nobeagle, I've used Notification History to track down my own mystery toasts.
posted by yuwtze at 7:37 AM on January 20, 2014


Response by poster: Notification History did the trick for me, quick and painlessly.

(The Toasts were originating from Go SMS Pro, BTW, giving me yet another reason to try to find a better SMS solution.)

Also marked a few other answers as best because they would have gotten me there if I had the time right now to invest in them.
posted by radwolf76 at 4:45 AM on January 21, 2014


« Older What are you eating in Denver and Seattle?   |   Should I leave my job and go on SSDI? Newer »
This thread is closed to new comments.