ListView に複数の TextView を表示するために、カスタム ArrayAdapter を作成しています ( Customizing Android ListView Items with Custom ArrayAdapter )。私の目的は、次のような表のような形式 (2 列) でそれらを表示することです。
AB ---------- CD ---------- EF
ただし、次のように縦形式で取得し続けます。
あ B ---------- C D ---------- え ふ
アクティビティの xml は次のとおりです。
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
<ListView
android:id="@+id/list_view"
android:layout_width="fill_parent"
android:layout_height="wrap_content" />
</LinearLayout>
ここにlist_view.xmlがあります
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
<TextView android:id="@+id/product_name"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:padding="10dip"
android:textSize="16dip"
android:textStyle="bold"/>
<TextView android:id="@+id/status"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:padding="10dip"
android:textSize="16dip"
android:textStyle="bold"/>
</LinearLayout>
私はfill_parentとwrap_contentにあまり慣れていません。多分私はそれらに何か間違ったことをしていますか?