0

私はこの動的なテーブルレイアウトを持っています:

 <LinearLayout
                    android:layout_width="match_parent"
                    android:layout_height="match_parent"
                    android:orientation="horizontal" >

                    <TableLayout
                        android:id="@+id/main_table"
                        android:layout_width="match_parent"
                        android:layout_height="wrap_content"
                        android:layout_margin="2dip"
                        android:layout_weight="1"
                        android:stretchColumns="1" >
                    </TableLayout>
                </LinearLayout>

そしてコード:

tl = (TableLayout) findViewById(R.id.main_table);
...
// Create 5 columns to add as table data
            TextView labelid = new TextView(this);
            labelid.setId(count);
            labelid.setTextSize(20);
            labelid.setPadding(10, 10, 10, 10);
            labelid.setGravity(Gravity.CENTER);
            labelid.setText(readxml.getID() + " ");
            labelid.setTextColor(Color.BLACK);
            tr.addView(labelid);

            // Create 5 columns to add as table data
            TextView labelname = new TextView(this);
            labelname.setId(count);
            labelname.setTextSize(20);
            labelname.setPadding(10, 10, 10, 10);
            labelname.setGravity(Gravity.CENTER);
            labelname.setText(readxml.getName() + " ");
            labelname.setTextColor(Color.BLACK);
            tr.addView(labelname);

では、1行のテキストビューのテキストを更新するにはどうすればよいですか?

4

2 に答える 2

0

タグを TextView に設定して、それらを呼び戻します

例えば

//label tag
labelid.setTag("labelid"+count);
//text tag
labelname.setTag("labelname"+count);

位置によって labelid または labelname を呼び出す

//for example get first element added values

    int myid = 0;
    TextView labelid_text = (TextView) tl.findViewWithTag("labelid"+myid);
    TextView labelname_text = (TextView) tl.findViewWithTag("labelname"+myid);
于 2013-11-05T14:01:54.703 に答える
0

問題に適している場合は GridView を使用することをお勧めします。それ以外の場合は、この回答を確認してください。必要なものです。

于 2013-11-05T12:15:12.130 に答える