11

是否将数据ViewGroup.addView克隆LayoutParams到内部或链接到它?我可以用不同的视图重复LayoutParams使用多次调用的同一个实例吗?addView()

在 apidoc 中没有任何关于它的内容。

答案是否定的(通过实验检查):

public class SymbolPadActivity extends Activity {
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {

    super.onCreate(savedInstanceState);

    RelativeLayout.LayoutParams labelParams;

    /*
     * This block to reuse is not working
    labelParams = new RelativeLayout.LayoutParams(LayoutParams.WRAP_CONTENT, LayoutParams.WRAP_CONTENT);
    labelParams.addRule(RelativeLayout.ALIGN_PARENT_LEFT, RelativeLayout.TRUE);
    labelParams.addRule(RelativeLayout.ALIGN_PARENT_TOP, RelativeLayout.TRUE);
    */


    RelativeLayout mover = new RelativeLayout(this);

    TextView textView;
    for(int leftMargin = 0; leftMargin<3000; leftMargin += 100) {
        for(int topMargin=0; topMargin<800; topMargin += 40) {

            // I can't omit these 3 lines 
            labelParams = new RelativeLayout.LayoutParams(LayoutParams.WRAP_CONTENT, LayoutParams.WRAP_CONTENT);
            labelParams.addRule(RelativeLayout.ALIGN_PARENT_LEFT, RelativeLayout.TRUE);
            labelParams.addRule(RelativeLayout.ALIGN_PARENT_TOP, RelativeLayout.TRUE);

            labelParams.leftMargin = leftMargin;
            labelParams.topMargin = topMargin;

            textView = new TextView(this);
            textView.setText("(" + leftMargin + "," + topMargin + ")");
            mover.addView(textView, labelParams);

        }
    }




    RelativeLayout.LayoutParams moverParams = new RelativeLayout.LayoutParams(LayoutParams.WRAP_CONTENT, LayoutParams.WRAP_CONTENT);
    moverParams.addRule(RelativeLayout.ALIGN_PARENT_LEFT, RelativeLayout.TRUE);
    moverParams.addRule(RelativeLayout.ALIGN_PARENT_TOP, RelativeLayout.TRUE);
    moverParams.leftMargin = 0;
    moverParams.topMargin = 0;

    RelativeLayout stator = new RelativeLayout(this);
    stator.addView(mover, 0, moverParams);

    setContentView(stator);


}

}

4

2 回答 2

5

在 apidoc 中没有任何关于它的内容。

这意味着无论当前的实现是什么,您都需要做出更保守的选择,因为实现可能会发生变化。

LayoutParams因此,您需要假设重用with different的实例是不安全的Views

对于它的价值,据我所知,无论如何这是真的 -ViewGroup不会复制。

于 2012-05-03T13:51:34.983 回答
2

这是一个老问题,但似乎有一个更新的答案:

LayoutParams 有一个用于复制另一个来源的构造函数:http: //developer.android.com/reference/android/view/ViewGroup.LayoutParams.html

ViewGroup.LayoutParams(ViewGroup.LayoutParams source)

这建议不要重复使用它,但也许用你需要的一切创建 1 个布局参数对象,然后调用

new LayoutParams(someLayoutParamsToReUse)

就我而言,我想将按钮的布局参数设置为与另一个按钮相同。我最初尝试过:

button.setLayoutParams(button2.getLayoutParams());

这将不起作用,但是这应该:

button.setLayoutParams(new LayoutParms(button2.getLayoutParams))'
于 2014-03-22T15:25:39.673 回答