主要实现如图第一排第一个(图片自己选取)
核心代码如图
附加代码:
import java.awt.AWTException;
import java.awt.Image;
import java.awt.SystemTray;
import java.awt.Toolkit;
import java.awt.TrayIcon;
import javax.swing.ImageIcon;
import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.JPanel;
public class Test extends JFrame {
public Test() {
Interface();
//获取图片(src/1.jpg)这个图片放在src目录下
Image logo = Toolkit.getDefaultToolkit().getImage("src/1.jpg");
//获取图片的路径
this.setIconImage(logo);
//创建一个托盘图标(任务栏右下角显示图标)
TrayIcon icon = new TrayIcon(logo, null, null);
//关键点,设置托盘图标的自适应属性,这样才能在系统显示托盘处正常显示出需要的图片
icon.setImageAutoSize(true);
//获取表示桌面托盘区的 SystemTray 实例
SystemTray systemTray = SystemTray.getSystemTray();
try {
//将 icon 添加到 SystemTray
systemTray.add(icon);
} catch (AWTException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
private void Interface() {
//设置标题
this.setTitle("背景图");
//设置大小
this.setSize(200,200);
//设置位置
this.setLocation(200, 50);
//背景图片的路径。
String path = "src/1.jpg";
// 背景图片
ImageIcon background = new ImageIcon(path);
// 把背景图片显示在一个标签里面
JLabel label = new JLabel(background);
// 把标签的大小位置设置为图片刚好填充整个面板
label.setBounds(0, 0, this.getWidth(), this.getHeight());
// 把内容窗格转化为JPanel,否则不能用方法setOpaque()来使内容窗格透明
JPanel imagePanel = (JPanel) this.getContentPane();
imagePanel.setOpaque(false);
// 把背景图片添加到分层窗格的最底层作为背景
this.getLayeredPane().add(label, new Integer(Integer.MIN_VALUE));
//设置可见
this.setVisible(true);
//点关闭按钮时退出
this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
//将界面居中
this.setLocationRelativeTo(null);
//界面框不允许改变
this.setResizable(false);
}
public static void main(String[] args) {
// TODO Auto-generated method stub
new Test();
}
}