I have a set of EditText widgets on my activity view, each on a seperate TableRow in a TableView. When I select one of the EditText widgets, the others highlight as well although the focus is only on one of the EditTexts.
How can I prevent this?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
The problem I had, was that I was using a hidden edittext to use as a background reference for my edittext, however, they inherited the properties of the background when the edittext was highlighted. This was because multiple edittexts were using the same hidden edittext as a reference and so they all reacted in the same way.