Dialogue from the Google Maps application:
How to implement such AlertDialog, as in the screenshot?
For the dialogue, create a separate layout, make the markup you need in it, and then setView() method for the dialogue. A good example is here.
There is a convenient library for such purposes - Material Dialogs .
In addition, you can use the standard Dialog , as described in this question: https://stackoverflow.com/questions/31583828
Source: https://ru.stackoverflow.com/questions/437506/
All Articles