我在将多个图像放在JFrame上时遇到问题。我已经在JFrame上添加了一张图片作为主要背景。但是,当我尝试为我的程序的徽标添加另一个图像时,它不会显示出来。有人可以帮帮我吗?感谢。
P.S。我在JFrame中使用Container类。
import javax.swing.*;
import java.awt.*;
import java.awt.event.*;
import java.util.*;
import javax.swing.event.*;
import java.io.*;
import java.awt.Container;
public class logIn extends JFrame
{
Random rand = new Random();
int n2 = (int) (1+Math.random()*255);
int n1 = rand.nextInt(n2);
int n3 = rand.nextInt(n2);
int n4 = rand.nextInt(n2);
Color color = new Color(n1,n3,n4);
JLabel image = new JLabel (new ImageIcon("space2.png"));
//JLabel image2 = new JLabel (new ImageIcon("login.png"));
JLabel userName = new JLabel("Username");
JLabel passWord = new JLabel("Password");
JTextField user = new JTextField(10);
JTextField pass = new JTextField(10);
JLabel myDog = new JLabel(new ImageIcon("space.jpeg"));
public static void main (String args[])
{
new logIn();
}
public logIn()
{
setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
Container c = getContentPane();
c.setLayout(null);
c.add(image);
image.setBounds(0,0,1366,768);
JLabel image2 = new JLabel (new ImageIcon("login.png"));
c.add(image2);
image2.setBounds(2000,2000,2000,2000);
//c.add(image2);
//image2.setBounds(10,10,250,250);
//c.add(userName);
//userName.setLayout(null);
//userName.setBounds(50,100,100,50);
setVisible(true);
setSize(1366,768);
setLayout(new BorderLayout());
add(myDog);
myDog.setLayout(null);
}
public void paint (Graphics g)
{
Image a = Toolkit.getDefaultToolkit().getImage("login.png");
g.drawImage(a,0,0,1366,768,this);
super.paint(g);
setVisible(true);
}
}
答案 0 :(得分:0)
不确定你想要实现什么,但是如果你想拥有多个图像(比如密码字段以外的关键图像和除用户名之外的化身等),你可以使用不同的图像创建多个JLabel将它们添加到面板中。如果这是你的目的,不要覆盖油漆。
答案 1 :(得分:0)
您需要阅读一些有关自定义绘图,布局和gui开发的教程。
如果要绘制图像,则不应每次重绘时加载图像。您需要提前阅读该图像。您不应该在此方法中调用set visible。
任何自定义绘画都需要在paintComponent中完成而不是绘制。
阅读本文:http://docs.oracle.com/javase/tutorial/uiswing/painting/
听起来你真正想要做的是创建一个带有背景图像的面板的JFrame - 然后使用swing和layouts添加其他组件或面板,并在其上面添加图像。
因此,您可以将JPanel作为内容窗格,并重写paintComponent以仅绘制图像。然后从那里构建新组件并使用布局管理器放置它们。