gpt4 book ai didi

android - 在android中为按钮设置背景颜色时,它会隐藏线性布局中按钮之间的空白吗?

转载 作者:行者123 更新时间:2023-11-30 02:55:01 26 4
gpt4 key购买 nike

我遇到问题,当为按钮设置背景颜色时,它隐藏了线性布局(垂直)中按钮之间的空白

 LinearLayout ll=new LinearLayout(thisContext);
for(int i=0;i<10;i++)
{
Button b=new Button(thisContext);
b.setText("Button"+i);
b.setBackgroundColor(Color.GREEN);
ll.addview(b);

}

最佳答案

// try this way,hope this will help you...

LinearLayout ll=new LinearLayout(thisContext);
for(int i=0;i<10;i++)
{
Button b=new Button(thisContext);
LinearLayout.LayoutParams bParams = new LinearLayout.LayoutParams(LinearLayout.LayoutParams.WRAP_CONTENT, LinearLayout.LayoutParams.WRAP_CONTENT);
bParams.setMargins(5,5,5,5);
b.setLayoutParams(bParams);
b.setText("Button"+i);
b.setBackgroundColor(Color.GREEN);
ll.addview(b);
}

关于android - 在android中为按钮设置背景颜色时,它会隐藏线性布局中按钮之间的空白吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23425677/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com