I would like one Toast message to display in one location and a different Toast message to display in another location simultaneously.
Multiple Toast messages seem to always queue and display in order. Is it possible to show both messages at the same time?
Is there a workaround that at least gives that appearance and doesn't involve messing with the activity layout?
Edit: It seems the answer to the first question is no, it's not possible. How about a workaround? A solution for me would include something that appears "over" the app like a Toast and doesn't interfere with user interaction with the app (so, not an AlertDialogue or anything that calls onPause() etc.).
Is it possible to show both messages at the same time?
NO – Harshman