I want to group two textviews in a group and use like a label and value. Is there any component to group two textviews in android? How can it be accomplished in android layout?

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.
You can use
<LinearLayout>to group elements horizontaly. Also you should use style to set margins, background and other properties. This will allow you not to repeat code for every label you use.Here is an example:
Also you can create a custom view base on the layout above.
Have you looked at Creating custom view ?