gpt4 book ai didi

java - 我怎样才能在 Android 中删除这些空格

转载 作者:行者123 更新时间:2023-11-29 09:03:58 26 4
gpt4 key购买 nike

这是我的方法,这个方法的输出是http://l1304.hizliresim.com/18/f/m1r29.jpg

我不希望这些按钮之间有任何空格。我该怎么做?

public void butonOlustur(){
TableRow layout1 = (TableRow) findViewById(R.id.tableRow1);
TableRow layout2 = (TableRow) findViewById(R.id.tableRow2);
TableRow layout3 = (TableRow) findViewById(R.id.tableRow3);
TableRow layout4 = (TableRow) findViewById(R.id.tableRow4);
TableRow layout5 = (TableRow) findViewById(R.id.tableRow5);
TableRow[] layouts = new TableRow[6];
layouts[0]=layout1;
layouts[1]=layout2;
layouts[2]=layout3;
layouts[3]=layout4;
layouts[4]=layout5;
Button[][] myButton = new Button[4][25];
for(int j = 0; j <myButton.length; j++){
for(int i =0 ; i <25; i++){

Button temp = new Button(this);
myButton[j][i] = temp;
layouts[j].addView(myButton[j][i], 15, 15);


}
layouts[j] = layouts[j+1];
}


}

最佳答案

查看类似问题的回答herehere .

基本上,您可以创建自己的 9patch 图像,或者只需将 layout_marginLeft 和 layout_marginRight 更改为负值。

如果您决定设置边距,则不会希望以像素为单位进行设置。要将页边距设置为 dp 而不是像素,您可以使用 this answer 中的公式.

关于java - 我怎样才能在 Android 中删除这些空格,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15991914/

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