我尝试创建一个新的 Relativelayout,然后创建了一个按钮,最后我将此按钮添加到布局中。但是“ setContentView ”有助于实现什么?
这是代码
RelativeLayout wassimLayout = new RelativeLayout(this);
Button redButton = new Button(this);
wassimLayout.addView(redButton);
setContentView(wassimLayout);
我不知道,但我觉得它可能会将按钮的高度、宽度和其他特性设置为默认值。我该如何防止呢?
谢谢