Android:如何动态地使视图具有相同的高度

时间:2012-07-30 13:32:37

标签: android android-layout view

我正在Android应用程序中创建一个表。 现在我不能使视图高度相同。

  • 每行有TextView个,tmp_nametmp_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);

}

0 个答案:

没有答案