I am trying to write a LinearLayout
to be used as part of a ListView
that displays two TextViews
. One is the bank account name, and the other is the balance. I would like the account name to be on the left side of the layout and the balance to be on the right.
More specifically, I would like the balance to be right aligned, and the remaining space to the left will be used for the account name, but I haven't been able to figure it out. I've tried to use layout weights, but they don't work.
Here is the code that I have:
<LinearLayout
android:orientation="horizontal"
android:layout_width="wrap_content"
android:layout_height="wrap_content">
<TextView
android:layout_width="0dp"
android:layout_height="wrap_content"
android:textSize="30sp"
android:id="@+id/accountNameTextView"
android:layout_weight="2"/>
<TextView
android:layout_width="0dp"
android:layout_height="wrap_content"
android:textAppearance="?android:textAppearanceSmall"
android:id="@+id/accountBalanceTextView"
android:layout_weight="1"/>
</LinearLayout>
But what happens is that both TextViews are placed together on the left side, leaving a bunch of white space to the right. How do I force the second TextView to be on the right side?
As soon as I posted this question I found the answer. Thank you to anyone who looked into this, but the problem was that the LinearLayout width was wrap content, so it would wrap the two TextViews next to each other. By changing it to this:
I was able to use the layout weights to achieve the design I wanted.
I also changed the layout weight slightly, here is what I have: