0

レイアウトが既に定義されているテーブルにデータの行を動的に追加できるかどうか疑問に思っていました...例:

<TableLayout 
        android:id="@+id/myTableOrders"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_marginTop="10sp">

            <TableRow
                android:id="@+id/ordersRow"
                android:layout_width="fill_parent"
                android:layout_height="wrap_content">

                <TextView android:id="@+id/name"
                    android:textSize="14sp"
                    android:textStyle="bold"
                    android:layout_marginLeft="10sp"
                    android:layout_marginTop="5sp"
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:layout_weight="0.6"             
                />                                      

                <TextView android:id="@+id/quantity"
                    android:textSize="14sp"
                    android:textStyle="bold"
                    android:layout_marginTop="5sp"
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:layout_weight="0.2"
                />

                <TextView android:id="@+id/total_price"
                    android:textSize="14sp"
                    android:textStyle="bold"
                    android:layout_marginTop="5sp"
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:layout_weight="0.2"
                />
            </TableRow>
</TableLayout>

各行に 3 つのテキストビューがあり、そのスタイル設定が適用されているこのテーブルを検討してください...各テキストビューにデータを与えることはできますか?...それとも、人口を処理する Java コードにスタイル設定を記述する必要がありますか?

はいの場合..多分あなたは私にヒントを与えることができます:)

編集:以下のコードを使用してプログラムでこれを解決しました

TableLayout ordersTable = (TableLayout)findViewById(R.id.myTableOrders);
    for (int i=0;i<products.size();i++){

        //Create a new row to be added.
        TableRow tr = new TableRow(this);
        tr.setLayoutParams(new LayoutParams(LayoutParams.MATCH_PARENT,LayoutParams.WRAP_CONTENT));

        //Create text views to be added to the row.
        TextView name = new TextView(this);
        name.setText(products.get(i).getName());
        name.setTextSize(16);
        name.setTypeface(Typeface.DEFAULT_BOLD);
        TableRow.LayoutParams nameParams = new TableRow.LayoutParams(TableRow.LayoutParams.MATCH_PARENT, TableRow.LayoutParams.WRAP_CONTENT, 0.6f);
        nameParams.setMargins(7, 5, 0, 0);

        TextView quantity = new TextView(this);
        quantity.setText(products.get(i).getQuantityString());
        quantity.setTextSize(16);
        quantity.setTypeface(Typeface.DEFAULT_BOLD);
        TableRow.LayoutParams quantityParams = new TableRow.LayoutParams( TableRow.LayoutParams.WRAP_CONTENT, TableRow.LayoutParams.WRAP_CONTENT, 0.2f);
        quantityParams.setMargins(0, 5, 0, 0);

        TextView totalPrice = new TextView(this);
        totalPrice.setTextSize(16);
        totalPrice.setTypeface(Typeface.DEFAULT_BOLD);
        TableRow.LayoutParams totalPriceParams = new TableRow.LayoutParams( TableRow.LayoutParams.WRAP_CONTENT, TableRow.LayoutParams.WRAP_CONTENT, 0.2f);
        totalPriceParams.setMargins(0, 5, 0, 0);

        tr.addView(name,nameParams);
        tr.addView(quantity,quantityParams);
        tr.addView(totalPrice,totalPriceParams);

        ordersTable.addView(tr);
4

1 に答える 1