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 行 textviews 文本?

4

2 回答 2

0

如果适合您的问题,我建议您使用 GridView ,否则您可以查看此答案,这正是您所需要的。

于 2013-11-05T12:15:12.130 回答
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 回答