What is the structure of such a layout? The text in the left column aligned to the right, the text of right column aligned to the left. Also rows are separated with a line. Thank you for hints!

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 could make a
ListViewof your own items. That would give you a separator between all rows.To set your own layout for
ListView‘s item, you have to prepare your layout’s xml file and set it like this:Item‘s layout (LinearLayout) could consist of 2LinearLayouts. In first one (left) you’d haveTextViewthat would be aligned right in parent. Second one (right) would haveTextViewaligned left in parent and margin-left set to some specific value to make a gap between two layouts.