我在使用 SQLite 数据动态填充 android 中的 TABLE LAYOUT 中的数据时遇到问题,在填充它之后,我希望可以选择这些行来编辑该特定行中的信息。我想要的表格布局如下所示。
ID|name|address|phone number|
1| Peter|NYC |1800-900000|
2| Parker|LAC |1900-909090|
我希望这里有人可以帮助我,因为我是 android 编程新手。
我在使用 SQLite 数据动态填充 android 中的 TABLE LAYOUT 中的数据时遇到问题,在填充它之后,我希望可以选择这些行来编辑该特定行中的信息。我想要的表格布局如下所示。
ID|name|address|phone number|
1| Peter|NYC |1800-900000|
2| Parker|LAC |1900-909090|
我希望这里有人可以帮助我,因为我是 android 编程新手。
我猜你计划根据你对安迪的评论动态添加表格行而不是表格布局。如果您想动态添加表格行,那么您可以这样做......
1) Create a table Layout under ur referring xml file.
2) Refer to that table Layout in ur java code. say "table".
3) Then create a TableRow to add it to the TableLayout.
TableRow[] row = new TableRow(this);
TextView text = new TextView(this);
name.setText(// set ur text here);
row.addView(name);
4) Now finally add that tableRow to ur table.
table.addView(row);
同样,您可以动态地将“n”行添加到您的表中。
您只需要知道条目数(表格行)。然后在它上面运行一个循环。在那个循环结构中,你将继续在表格中添加行。