我正在开发一个安卓应用程序。我需要用图像填充我的列表。我想使用数组逐行在表格布局中插入图像。你能指导我怎么做吗?谢谢你。
问问题
7839 次
1 回答
6
使用此代码并根据您的代码进行更改
TableLayout table = new TableLayout(this);
for (int i = 0; i < mRows; i++) {
TableRow tr = new TableRow(mContext);
tr.setLayoutParams(new TableRow.LayoutParams(LayoutParams.FILL_PARENT, LayoutParams.WRAP_CONTENT));
for (int j = 0; j < mCols; j++) {
ImageView view = new ImageView(this);
view.setImageResource(R.drawable.star_on)
tr.addView(view);
}
table.addView(tr);
}
于 2013-10-07T04:42:50.080 回答