我正在Android应用程序中创建一个表。 现在我不能使视图高度相同。
TextView
个,tmp_name
和tmp_content
。 tmp_content
的高度取决于course_description(i)
的长度。 tmp_content
自动设置其高度。 我希望获得tmp_content
的高度,并将tmp_name
的高度重置为tmp_content
。
如果您有任何提示,请告诉我们。
for (int i = 0; i < course_name.size(); i++) {
TableRow.LayoutParams lp = new TableRow.LayoutParams(TableRow.LayoutParams.WRAP_CONTENT, TableRow.LayoutParams.WRAP_CONTENT);
lp.setMargins(1, 1, 1, 1);
TextView tmp_name = new TextView(General.this);
tmp_name.setText(course_name.get(i));
tmp_name.setPadding(10, 0, 10, 0);
tmp_name.setLayoutParams(lp);
tmp_name.setBackgroundColor(getResources().getColor(R.color.white));
TextView tmp_content = new TextView(General.this);
tmp_content.setHorizontallyScrolling(false);
tmp_content.setPadding(10, 0, 10, 0);
tmp_content.setLayoutParams(lp);
tmp_content.setBackgroundColor(getResources().getColor(R.color.white));
tmp_content.setText(course_discription.get(i));
TableRow tmp_row = new TableRow(General.this);
tmp_row.addView(tmp_name);
tmp_row.addView(tmp_content);
tmp_row.setGravity(Gravity.CENTER_VERTICAL);
course_display.removeView(tmp_row);
course_display.addView(tmp_row);
}