0

我在线性布局(水平)中有一个 TextView 和一个 ImageButton。我的总宽度是 300 像素。按钮图像为 50x50。我可以为文本使用的最大宽度是 250。如果文本宽度小于 250 像素(WRAP_CONTENT 很好用),下面的代码就可以完美运行。

    // create relative layout for the entire view
    LinearLayout layout = new LinearLayout(this);
    layout.setLayoutParams(new LayoutParams(LayoutParams.WRAP_CONTENT,
            LayoutParams.WRAP_CONTENT));
    layout.setOrientation(LinearLayout.HORIZONTAL);

    // create TextView for the title
    TextView titleView = new TextView(this);
    titleView.setText(title);
    layout.addView(titleView);

    // add the button onto the view
    bubbleBtn = new ImageButton(this);
    bubbleBtn.setLayoutParams(new LayoutParams(
            LayoutParams.WRAP_CONTENT, LayoutParams.FILL_PARENT));
    layout.addView(bubbleBtn);

当文本占用超过 250 像素时,问题就来了。按钮被推出并在 300 像素空间内变得不可见。

我想要的是:为图像分配 50 像素宽度。WRAP_CONTENT 在剩余的 250 像素中。换句话说,不是从左边填写,而是从右边填写。在这种情况下使用重力是正确的吗?我应该在代码中如何以及在哪里使用它?

或者有其他更好的方法吗?

4

1 回答 1

1

使用 RelativeLayout 而不是 LinearLayout。设置每个View的LayoutParams如下:

// add the button onto the view
bubbleBtn = new ImageButton(this);
bubbleBtn.setId(1); // should set this using a ids.xml resource really.
RelativeLayout.LayoutParams bbLP = new RelativeLayout.LayoutParams(LayoutParams.WRAP_CONTENT, LayoutParams.WRAP_CONTENT);
bbLP.addRule(RelativeLayout.ALIGN_PARENT_RIGHT);
bbLP.addRule(RelativeLayout.CENTER_VERTICAL);
layout.addView(bubbleBtn, bbLP);

// create TextView for the title
TextView titleView = new TextView(this);
titleView.setText(title);
titleView.setGravity(Gravity.RIGHT);
RelativeLayout.LayoutParams tvLP = new RelativeLayout.LayoutParams(LayoutParams.MATCH_PARENT, LayoutParams.WRAP_CONTENT);
tvLP.addRule(RelativeLayout.LEFT_OF, 1);
tvLP.addRule(RelativeLayout.CENTER_VERTICAL);
layout.addView(titleView, tvLP);
于 2012-07-13T10:56:34.580 回答