Search code examples
androidnotificationstoastclickable

Show notification on screen like Toast but clickable. In short a "ClickableToast"


I have a requirement where I need to show a bar at the bottom of the screen on particular event in the background thread. Also it has to be clickable.

I could consider showing a toast but toasts are not clickable. How can this be done?
Im developing on 2.1


Solution

  • I will show a PopupWindow for a notification on top of the current activity. Found it through Google. Thanks to all for your replies.