我正在使用带有4个按钮的相对布局(在中间,一个在另一个下面) 我的问题是调整所有按钮之间的间隙,以便在所有按钮之间保持相同。
我想根据屏幕的高度动态地做(我使用Display类来获得实际高度)。
最好的方法是什么?
谢谢,
Amigal
答案 0 :(得分:5)
您可以通过修改视图的LayoutParams
来完成此操作Button b;// your button
RelativeLayout.LayoutParams lp=(RelativeLayout.LayoutParams)b.getLayoutParams();
lp.leftMargin=10;//your left margin here
lp.topMargin=10;//your top margin here and do this for other 2 margins if you need to
有时你需要打电话
b.setLayoutParams(lp);
应用更改
我也不知道你如何获得屏幕尺寸,但这适用于每个API:
DisplayMetrics metrics = new DisplayMetrics();
getWindowManager().getDefaultDisplay().getMetrics(metrics);