-1

我正在运行此代码,并且模拟器正在发布强制退出。有谁知道可能出了什么问题?

TableLayout tl = (TableLayout)findViewById(R.id.tableLayout1);
TableRow tr = new TableRow(this);
tr.setLayoutParams(new LayoutParams(LayoutParams.FILL_PARENT, LayoutParams.WRAP_CONTENT));

ImageView IV = new ImageView(this);
IV.setBackgroundResource(R.drawable.celtics);
IV.setLayoutParams(new LayoutParams(LayoutParams.FILL_PARENT,LayoutParams.WRAP_CONTENT));
        tr.addView(IV);
        tl.addView(tr);
4

1 回答 1

-1

我实际上找到了一种通过动态执行此操作来解决此问题的方法。我删除了 xml 文件并在 Java 中创建了表

于 2011-03-05T04:40:35.053 回答