I would like to make every EditText object have own title like in Pure Android guidelines (screenshot)
Is there native support for this thing? I suppose they might also use listview with sections but this seems strange for native applications.
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.
There is no native support but we have couple of solution.
1) Create a layout file as you required a textview above edittext,etc and every time just include this layout in your XML file.
a layout can be include in other layout by using the below syntax::
2) As Josephus Villarey Suggested, extend EditText and give it that functionality as you want..