以编程方式在LinearLayout中设置边距


266

我正在尝试使用Java(而不是XML)来创建一个LinearLayout,并带有一个充满屏幕且具有边距的按钮。这是不带边距的代码:

LinearLayout buttonsView = new LinearLayout(this);
buttonsView.setOrientation(LinearLayout.VERTICAL);
for (int r = 0; r < 6; ++r) {
    Button btn = new Button(this);
    btn.setText("A");

    LinearLayout.LayoutParams lp = new LinearLayout.LayoutParams(LinearLayout.LayoutParams.FILL_PARENT, LinearLayout.LayoutParams.FILL_PARENT); // Verbose!
    lp.weight = 1.0f; // This is critical. Doesn't work without it.
    buttonsView.addView(btn, lp);
}

ViewGroup.LayoutParams lp = new ViewGroup.LayoutParams(ViewGroup.LayoutParams.FILL_PARENT, ViewGroup.LayoutParams.FILL_PARENT);
setContentView(buttonsView, lp);

这样就可以了,但是到底如何给按钮留出一定的边距,以便在它们之间留出空间?我尝试使用LinearLayout.MarginLayoutParams,但是没有weight成员,所以不好。如果您lp在其构造函数中传递它,它也不起作用。

这不可能吗?因为它看起来确实可靠,而且它不是您只能使用XML进行的第一个Android布局任务。


1
developer.android.com/reference/android/view/…,int,int,int)而不是layoutParams.setMargins(30,20,30,0); 你把layoutParams.setMargins(30dp,20dp,30dp,0dp);
DarthestVader'1

3
setMargins以int作为参数。.您只能使用xml属性提供“ dp”
jyavenard 2012年

Answers:


496

这是一些实现它的代码:

LinearLayout ll = new LinearLayout(this);
ll.setOrientation(LinearLayout.VERTICAL);

LinearLayout.LayoutParams layoutParams = new LinearLayout.LayoutParams(
     LinearLayout.LayoutParams.MATCH_PARENT, LinearLayout.LayoutParams.WRAP_CONTENT);

layoutParams.setMargins(30, 20, 30, 0);

Button okButton=new Button(this);
okButton.setText("some text");
ll.addView(okButton, layoutParams);

6
感谢点对点代码示例-比描述更有益
某处某人

25
看来边距参数设置为像素。有什么办法在DPS中设置它们吗?
Artem Russakovskii 2011年

30
@ArtemRussakovskii与Android中的大多数功能一样,它们也需要像素。我建议使用一个全局实用函数将DIP转换为px。这就是我在所有应用程序中所做的。Android API很烂。
mxcl 2012年

7
@MaxHowell这就是我最终要做的。令人难以置信的是,有时缺少诸如此类的基本信息。
Artem Russakovskii 2012年

5
@ArtemRussakovskii-使用TypedValue.applyDimension(...)将DIP转换为PX。见stackoverflow.com/questions/2238883/...
高塔姆

64

这样就可以了,但是到底如何给按钮留出一定的边距,以便在它们之间留出空间?

您调用setMargins()LinearLayout.LayoutParams对象。

我尝试使用LinearLayout.MarginLayoutParams,但是它没有权重成员,所以不好。

LinearLayout.LayoutParams是的子类LinearLayout.MarginLayoutParams,如中所示的文档

这不可能吗?

没有。

这将不是您只能使用XML进行的第一个Android布局任务

欢迎您提供此索赔的证明。

就我个人而言,我没有意识到只能通过XML而非SDK中的Java方法完成的任何事情。实际上,根据定义,由于XML不是可执行代码,因此一切都必须通过Java进行(尽管不一定通过SDK可达的方法)。但是,如果您知道某些情况,请指出,因为这是SDK中的错误,有一天应该会修复。


2
哈,好,我现在明白了。在相当复杂的布局系统中迷路了。我认为没有在运行时设置layout_widgth / height的方法。
Timmmm

2
而且也没有办法设置样式:stackoverflow.com/questions/2016249/...
Timmmm

1
我没有在运行时通过设置宽度和高度的问题LayoutPararms。我说的是样式...是的,嗯,我不使用它们是有原因的。:-)
CommonsWare,2010年

6
我想知道为什么以编程方式生成UI的PITA如此
某处某人

3
让我花了很长时间才意识到,事实上,几天前我导入了不支持页边距的错误LayoutParams。有10个以上的选项D:我去了linearLayout.LayoutParams。作品。
世界末日

31

要将边距直接添加到项目中(某些项目允许直接编辑边距),可以执行以下操作:

LayoutParams lp = ((ViewGroup) something).getLayoutParams();
if( lp instanceof MarginLayoutParams )
{
    ((MarginLayoutParams) lp).topMargin = ...;
    ((MarginLayoutParams) lp).leftMargin = ...;
    //... etc
}
else
    Log.e("MyApp", "Attempted to set the margins on a class that doesn't support margins: "+something.getClass().getName() );

...这无需知道/编辑周围的布局即可。请注意“ instanceof”检查,以防您尝试对不支持边距的内容进行运行。


2
它正是我在寻找。
djdance

21

由于设备屏幕像素密度的变化,最好始终使用DIP单位以编程方式设置边距。像下面

//get resources
Resources r = getResources();
float pxLeftMargin = TypedValue.applyDimension(TypedValue.COMPLEX_UNIT_DIP, 10, r.getDisplayMetrics());
float pxTopMargin = TypedValue.applyDimension(TypedValue.COMPLEX_UNIT_DIP, 10, r.getDisplayMetrics());
float pxRightMargin = TypedValue.applyDimension(TypedValue.COMPLEX_UNIT_DIP, 10, r.getDisplayMetrics());
float pxBottomMargin = TypedValue.applyDimension(TypedValue.COMPLEX_UNIT_DIP, 20, r.getDisplayMetrics());

//get layout params...
LayoutParams params=new LayoutParams(LayoutParams.MATCH_PARENT, LayoutParams.MATCH_PARENT);
params.setMargins(Math.round(pxLeftMargin), Math.round(pxTopMargin), Math.round(pxRightMargin), Math.round(pxBottomMargin));

//set margin...
yourLayoutTOsetMargin.setLayoutParams(params); 

希望这会有所帮助。


10

我直接使用下面的代码设置了边距

LinearLayout layout = (LinearLayout)findViewById(R.id.yourrelative_layout);
LayoutParams params = new LayoutParams(LayoutParams.MATCH_PARENT,LayoutParams.WRAP_CONTENT);            
params.setMargins(3, 300, 3, 3); 
layout.setLayoutParams(params);

这里唯一要注意的是,LayoutParams应该为以下软件包导入该软件包android.widget.RelativeLayout.LayoutParams,否则将出现错误。


7

试试这个

 LayoutParams params = new LayoutParams(
            LayoutParams.WRAP_CONTENT,      
            LayoutParams.WRAP_CONTENT
    );
    params.setMargins(left, top, right, bottom);
    yourbutton.setLayoutParams(params);

7
 MarginLayoutParams layoutParams = (MarginLayoutParams) getLayoutParams();
 layoutParams.setMargins(leftMargin, topMargin, rightMargin, bottomMargin);

2
“虽然此代码可以回答问题,但最好在此处包括对代码的解释。
xenteros

4

试试这个:

MarginLayoutParams params = (MarginLayoutParams) view.getLayoutParams();
params.width = 250;
params.leftMargin = 50;
params.topMargin = 50;

3
/*
 * invalid margin
 */
private void invalidMarginBottom() {
    RelativeLayout.LayoutParams lp = (RelativeLayout.LayoutParams) frameLayoutContent.getLayoutParams();
    lp.setMargins(0, 0, 0, 0);
    frameLayoutContent.setLayoutParams(lp);
}

您应该注意视图的viewGroup的类型。例如,在上面的代码中,我想更改frameLayout的边距,而frameLayout的视图组是RelativeLayout,因此需要隐蔽到(RelativeLayout.LayoutParams)


0

这里是单行解决方案:

((LinearLayout.LayoutParams) yourLinearLayout.getLayoutParams()).marginToAdd = ((int)(Resources.getSystem().getDisplayMetrics().density * yourDPValue));
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.