Reputation: 4968
I tried using the answer posted by Chirag and Venkatesh in the following link: How can I implement this UI in Android
I can create the UI but I can't type anything there. How do I type in those edit text boxes?
Upvotes: 1
Views: 3857
Reputation: 1
if you are setting a on key listener to the same edit text , make sure that the return is "false" , if it is true the typing in the soft keypad will not be reflected in the edit box.
Source : while working with the recycleview , i had an edit text in the recycle view layout , on typing in edit text the typing did not reflect in the edit text so i did the above mentioned changes to make it alright.
Upvotes: 0
Reputation: 11946
I think what you see is the TextViews laid out on top of the EditBoxes. Try to remove the TextViews from main.xml and see if you are able to edit.
Upvotes: 2