0

我有一个水平的线性布局。它有三个文本视图。如何设置它以便左右宽度环绕内容,但中心单元格宽度完全最大化,并且 textview 在其中左对齐?我只想在 java 中创建它。

这是我到目前为止所拥有的,但中间单元格没有被最大化......有谁知道如何解决这个问题?谢谢

    LinearLayout titleLL = new LinearLayout(this);
    titleLL.setOrientation(LinearLayout.HORIZONTAL);

    TextView num = new TextView(this);
    num.setText(String.format("%d", index+1));
    num.setPadding(5, 5, 5, 5);
    num.setTextAppearance(this, R.style.title_numbering);
    num.setBackgroundResource(R.drawable.title_numbering_background);

    TextView name = new TextView(this);
    name.setText(task.name);
    name.setPadding(10, 0, 0, 10);
    name.setTextAppearance(this, R.style.title);

    TextView edit = new TextView(this);
    edit.setText("Edit");

    titleLL.addView(num);
    titleLL.addView(name);
    titleLL.addView(edit);
4

1 回答 1

1

添加中间文本视图时使用权重:

LinearLayout.LayoutParams params = new LinearLayout.LayoutParams(
    0, LinearLayout.LayoutParams.WRAP_CONTENT, 1);
titleLL.addView(name, params);
于 2013-08-28T01:11:59.797 回答