1

私のアプリケーションでは、何人かの人の情報を表示する必要があります。一度に3人のメンバーだけを表示する必要があります。左から右にスワイプすると、別の3セットのメンバーを表示する必要があります。これがデザインですここに画像の説明を入力してください

最初に考えたのは、3つのリストビュー、つまりLV1、LV2、LV3を使用して、これら3つのリストビューにリストアダプターを設定できることです。また、ListAdapterでは、リストビューの最初の行でタイトルの詳細を取得でき、その後、連続する行のリストビューを取得できます。つまり、すべてのホワイトボックスには個別のリストビューがあり、1人のメンバーにいくつのホワイトボックスが存在するかを予測することはできません。

1つのlistViewに対してMemberという1つのオブジェクトを送信できます。メンバーオブジェクトの属性の1つはArrayListです。

 List mem1 = new ArrayList();
mem1.add(member1)
List mem2 = new ArrayList();
mem2.add(member2)
List mem3 = new ArrayList();
mem3.add(member3)

LV1アダプターの場合はmem1、LV2アダプターの場合はmem2、LV3アダプターの場合はmem3を送信できます。

しかし、白いボックスにプロジェクトの詳細を入力することはできません。

これを行うための最良の方法を教えてください...

4

2 に答える 2

1


フォームにリストビューを配置することをお勧めします。次に、リストビューの行として個別の「row.xml」レイアウトを作成します。row.xmlには、3つのテキストボックス が含まれています。
見出しには、テキストビューを作成してフォームに入力します。次に、以下のコーディングスニペットに基づいてリストビューにデータを入力する必要があります。

class MyAdapter extends ArrayAdapter {
        ArrayList items;

        MyAdapter(ArrayList items) {
            super(OrderSummary.this, R.layout.row, items);
            this.items = items;
        }

        public View getView(int position, View convertView, ViewGroup parent)
        {
            //Your business login to insert data in the text boxes
        }
    }

MyAdapter mSchedule = new MyAdapter(mylist);
listView.setAdapter(mSchedule);
于 2013-02-07T09:04:33.327 に答える
0

私は解決策を得ました、

3 つのリストビューを検討し、リストビューのカスタム ビューを作成します。ここでは、リストビューには 1 行しか含まれていません。その行のデザインは

<LinearLayout
    android:id="@+id/dd"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:orientation="vertical" >

    <TextView
        android:id="@+id/title"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:clickable="true"
        android:gravity="center_horizontal"
        android:textColor="#FFFFFF"
        android:textSize="27dp"
        android:textStyle="bold" />

    <TextView
        android:id="@+id/subtitle"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:gravity="center_horizontal"
        android:textColor="#FFFFFF"
        android:textSize="15dp"
        android:textStyle="bold" />

    <Button
        android:id="@+id/action"
        android:layout_width="fill_parent"
        android:layout_height="55dp"
        android:layout_marginBottom="5dp"
        android:layout_marginLeft="10dp"
        android:layout_marginRight="10dp"
        android:layout_marginTop="5dp"
        android:background="@drawable/blue_button_bg"
        android:text="action"
        android:textStyle="bold" />

    <TextView
        android:id="@+id/ttt"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:gravity="center_horizontal"
        android:textColor="#FFFFFF"
        android:textSize="27dp" />
</LinearLayout>

<GridLayout
    android:id="@+id/projects"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:layout_marginBottom="5dip"
    android:layout_marginTop="5dip"
    android:layout_weight="1"
    android:clipToPadding="true"
    android:columnCount="1"
    android:orientation="horizontal"
    android:useDefaultMargins="true" >
</GridLayout>

于 2013-02-07T09:24:47.123 に答える