In my app, I have details layout, in which there is a list view which have card type. Below to that I have edittext. My requirement is, once I have selected an item in card type list view, the text indicator should automatically go into the next field i.e. edit text, but not getting idea how to do that.
Share
The field where you want to reach automatically should gain focus….
write this code inside your item clicked listener:
ex: let that field be edit text
so write :
edittext.requestFocus();