リストビューのアイテムを並べて、表形式のデータとして表示したいと思います。各ListItemに4つのTextViewがあります。端にも1位と4位があります。真ん中を並べることができません。これを行うためのより良い方法はありますか?
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="40dp"
android:background="@color/row_selector"
android:paddingLeft="10dp"
android:paddingRight="5dp"
android:paddingBottom="10dp"
android:paddingTop="10dp" >
<TextView
android:id="@+id/labelGas"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="25"
android:text="@+id/label"
android:textColor="#222"
>
</TextView>
<TextView
android:id="@+id/labelDate"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="15"
android:text="@+id/label"
android:textColor="#222"
>
</TextView>
<TextView
android:id="@+id/labelApr"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="35"
android:text="@+id/label"
android:textSize="18dp" >
</TextView>
<TextView
android:id="@+id/labelFee"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="5"
android:text="@+id/label"
>
</TextView>
</LinearLayout>