0

我有一个表格布局,它等待信息到达。当数据到达时,我动态地填充表格。但是当我将手机旋转 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
}

如果我希望桌子保留信息并且在我转动手机时不会消失,我该怎么办?

4

1 回答 1

0

最简单的方法

 <activity android:theme="@style/Theme.app" android:configChanges="orientation|screenSize" android:name=".YourActivity" android:label="@string/app_name"></activity>

这是主要的android:configChanges="orientation|screenSize"

于 2012-12-27T09:10:51.310 回答