我有一个表格布局,它等待信息到达。当数据到达时,我动态地填充表格。但是当我将手机旋转 90 度时,桌子消失了。编码:
{
TableRow row;
TextView t1, t2;
ArrayList<InfoPair> values;
values = processResults(r);
Iterator it = values.iterator();
while (it.hasNext()) {
InfoPair pairs = (InfoPair) it.next();
row = new TableRow(c);
t1 = new TextView(c);
t2 = new TextView(c);
// t1.setTextLocale(new Locale("hu", "hu"));
t1.setText(pairs.getLabel());
t2.setText(pairs.getValue());
t1.setWidth(200);
t2.setWidth(280);
t1.setBackgroundColor(Color.GRAY);
t2.setBackgroundColor(Color.YELLOW);
row.addView(t1);
row.addView(t2);
infoTable.addView(row);
it.remove(); // avoids a ConcurrentModificationException
}
如果我希望桌子保留信息并且在我转动手机时不会消失,我该怎么办?