I am developing an android application and i want to do some menus like this:
https://lh5.ggpht.com/p4TiLyVZjDSMBPacy6iirf9Q3vbpxtTpdwAKlvU03dw6SjaQo1EVNkKIC-nMRzuNRYs
I am talking about the little box that appears over the background calendar. The one which is written Tuesday, October 19, 2010. How can i do this? Is there any view specially designed for this?
Seems there’s no view specifically for this behavior.
I would suggest to implement your own specific DialogFragment for that popup with required layout and logic. Here’s an example of such implementation. You can pass coordinates/position to it as arguments to show the dialog at some specific place (use received parameter in fragments onCreateView() to position the layout, calculate margins etc.).