java swing 按钮不显示

按钮迟迟不出现,网上说加了super.paint(g);也没用。555~~~packagegame01;importjavax.swing.*;importjava.aw... 按钮迟迟不出现,网上说加了super.paint(g);也没用。555~~~
package game01;

import javax.swing.*;
import java.awt.*;
import java.awt.image.BufferedImage;

public class Test extends JFrame {
public Test()
{
this.setVisible(true);
this.setLocation(0,0);
this.setSize(700,700);
this.setLayout(null);
JPanel p1 = new JPanel();
p1.setLayout(null);
p1.setBounds(0,0,700,700);
JButton b1 = new JButton("b1");
b1.setBounds(0,0,100,100);
p1.add(b1);
this.add(p1);
}
public void paint(Graphics g)
{
super.paint(g);
BufferedImage bi = new BufferedImage(700,700,BufferedImage.TYPE_INT_RGB);
Graphics g2 = bi.createGraphics();
g2.setColor(Color.WHITE);
g2.fillOval(150, 150, 100, 100);
g.drawImage(bi, 0, 0, this);

}
/**
* @param args
*/
public static void main(String[] args)
{
Test test = new Test();
}

}
展开
 我来答
截竹为萧
2013-08-23 · TA获得超过155个赞
知道小有建树答主
回答量:162
采纳率:0%
帮助的人:196万
展开全部
你重写的BufferedImage区域会覆盖掉button。(button和BufferedImage区域重叠)g.drawImage(bi, 0,0, this); 改成g.drawImage(bi, 0,130, this); 差不多就可以出现,重写的是多的30 是JFrame的标题栏宽度。
追问
怎样才能让按钮覆盖在BufferedImage上呢
yugi111
2013-08-24 · TA获得超过8.1万个赞
知道大有可为答主
回答量:5.1万
采纳率:70%
帮助的人:1.3亿
展开全部

import javax.swing.*;
import java.awt.*;
import java.awt.image.BufferedImage;


public class Test extends JFrame
{
public Test()
{
this.setLocation(0, 0);
this.setSize(700, 700);
this.setLayout(null);
JPanel p1 = new JPanel();
p1.setLayout(null);
p1.setBounds(0, 0, 700, 700);
JButton b1 = new JButton("b1");
b1.setBounds(0, 0, 100, 100);
p1.add(b1);
this.add(p1);
this.setVisible(true);
}
public void paint( Graphics g )
{
super.paint(g);
BufferedImage bi =
new BufferedImage(700, 700, BufferedImage.TYPE_INT_RGB);
Graphics g2 = bi.createGraphics();
g2.setColor(Color.WHITE);
g2.fillOval(150, 150, 100, 100);
g.drawImage(bi, 0, 0, this);

}
/**
 * @param args
 */
public static void main( String[] args )
{
Test test = new Test();
}

}
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式