我正在以編程方式創建表格行,並且希望將之前創建的視圖放入行中。有什麼辦法可以做到嗎?如何在Android中的錶行中放置自定義視圖?
for (current = 0; current < rapor1.length; current++)
{
TableRow tr = new TableRow(this);
tr.setId(100+current);
tr.setLayoutParams(new LayoutParams(
LayoutParams.FILL_PARENT,
LayoutParams.WRAP_CONTENT));
TextView f1 = new TextView(this);
f1.setId(200+current);
f1.setText(rapor1[current]);
f1.setTextColor(Color.BLACK);
f1.setWidth(100);
tr.addView(f1);
DrawView dv = new DrawView(this);
tr.addView(dv);
它應該工作,但有些事情是錯誤的。
什麼是錯的任何觀點及?編譯錯誤?運行時錯誤?提供更多信息 – theAlse
它不會在那裏添加。它不起作用 – mucisk