How to fill color in grid boxes randomly(如何在网格框中随机填充颜色)
问题描述
如何在网格框上随机填充颜色?
How can I fill color on the grid boxes randomly?
这里不是如图所示有序:
Rather than orderly as shown in picture here:
网格 http://www.freeimagehosting.net/uploads/4ed76557de.jpg
public class grid extends JPanel{
Label one = new Label();
Label two = new Label();
Label three = new Label();
Label four = new Label();
public static void main(String[] args){
JFrame jf=new JFrame();
jf.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
jf.add(new YAnswers());
jf.pack();
jf.setVisible(true);
}
grid (){
int rows=10; int cols=10;
setLayout(new GridLayout(rows,cols));
add(one); one.setBackground(Color.red);
add(two); two.setBackground(Color.orange);
add(three); three.setBackground(Color.green);
add(four); four.setBackground(Color.black);
boxes[] bx=new boxes[rows*cols];
for(int i=0;i<rows*cols;i++){
System.out.println("i"+i);
bx[i]=new boxes();
if(i%2<1)
bx[i].setColor(1);
add(bx[i]);
}
} //end grid()
}
推荐答案
可以通过Math.random
获得随机颜色:
You can get a random color by using Math.random
:
new Color( (float)Math.random(), (float)Math.random(), (float)Math.random() );
顺便说一句:Java 中的类名以大写字母开头,因此请使用 Grid
而不是 grid
.
BTW: Class-names start with upper-case in Java, so use Grid
instead of grid
.
编辑
以下代码使用 GridBagLayout
产生这个结果:
The following code uses GridBagLayout
to produce this result:
替代文字 http://img214.imageshack.us/img214/5426/so2374295.png
public Grid ()
{
final Color BACKGROUND = Color.LIGHT_GRAY;
final Color[] colors = new Color[]
{Color.BLACK, Color.BLACK, Color.BLUE, Color.BLUE};
final int ROWS=10;
final int COLS=10;
setBackground(Color.BLACK);
setLayout(new GridBagLayout());
Label[][] label = new Label[ROWS][COLS];
GridBagConstraints gc = new GridBagConstraints();
gc.weightx = 1d;
gc.weighty = 1d;
gc.insets = new Insets(0, 0, 1, 1);
gc.fill = GridBagConstraints.BOTH;
// fill the whole panel with labels
for( int r=0 ; r<ROWS ; r++) {
for( int c=0 ; c<COLS ; c++) {
Label l = new Label();
l.setBackground(BACKGROUND);
gc.gridx = r;
gc.gridy = c;
add(l, gc);
label[r][c] = l;
}
}
// now find random fields for the colors defined in BACKGROUND
for(Color col : colors) {
int r, c;
do { // make sure to find unique fields
r = (int)Math.floor(Math.random() * ROWS);
c = (int)Math.floor(Math.random() * COLS);
} while(!label[r][c].getBackground().equals(BACKGROUND));
label[r][c].setBackground(col);
}
}
这篇关于如何在网格框中随机填充颜色的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何在网格框中随机填充颜色
基础教程推荐
- 如何使用 Java 创建 X509 证书? 2022-01-01
- Java Keytool 导入证书后出错,"keytool error: java.io.FileNotFoundException &拒绝访问" 2022-01-01
- 无法使用修饰符“public final"访问 java.util.Ha 2022-01-01
- 在 Libgdx 中处理屏幕的正确方法 2022-01-01
- “未找到匹配项"使用 matcher 的 group 方法时 2022-01-01
- 设置 bean 时出现 Nullpointerexception 2022-01-01
- 减少 JVM 暂停时间 >1 秒使用 UseConcMarkSweepGC 2022-01-01
- Java:带有char数组的println给出乱码 2022-01-01
- 降序排序:Java Map 2022-01-01
- FirebaseListAdapter 不推送聊天应用程序的单个项目 - Firebase-Ui 3.1 2022-01-01