Я думаю, что для textview listview, т. Е. (ListView также имеет 2 textView's: textViewProduct и textViewPrice.), Вы можете использовать этот макет.Вы можете настроить второе текстовое представление, просто добавив вправо в соответствии с вашими требованиями.
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="horizontal"
android:layout_width="fill_parent"
android:layout_height="wrap_content">
<TextView
android:id="@+id/country_name"
android:text="textViewProduct"
android:paddingLeft="10dip"
android:layout_weight="0.5"
android:layout_gravity="center"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
<TextView
android:id="@+id/country_abbrev"
android:text="textViewPrice"
android:layout_gravity="right"
android:paddingRight="30dip"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
</LinearLayout>