I'd like to create an EditText that allows user to quickly put in a specific date in format dd/mm/yy, where he only needs to pass day, month and year numbers, without worrying about slashes and overall formating. Is it possible to do that with one EditText or is my only option to create multiple EditTexts and jump the cursor between them?
You could add the date mask "##/##/##" in your EditText. Here is a tutorial on how to do this:
https://medium.com/@diegoy_kuri/masks-in-android-edit-text-fields-33a2fd47f1af