導航:首頁 > 圖片大全 > 用java如何在布局中添加圖片

用java如何在布局中添加圖片

發布時間:2024-01-10 14:25:23

『壹』 Java Swing 怎麼自定義界面背景圖片

在java swing中需要為容器添加自定義圖片或者背景圖片。提供兩種簡單的解決方案,一種利用JPanel,另一種利用JLabel,代碼如下:

1、JPanel(源代碼)

packageoo;
importjava.awt.Graphics;
importjava.awt.Image;
importjava.io.File;
importjavax.swing.ImageIcon;
importjavax.swing.JFrame;
importjavax.swing.JPanel;

publicclassDrawing{

JFramejframe=newJFrame();
publicstaticJPanelGImage=null;

publicDrawing(){
initFrame();
}

//初始化窗口
publicvoidinitFrame(){
//利用JPanel添加背景圖片

GImage=newJPanel(){

protectedvoidpaintComponent(Graphicsg){
ImageIconicon=newImageIcon("image\benbenla.jpg");
Imageimg=icon.getImage();
g.drawImage(img,0,0,icon.getIconWidth(),
icon.getIconHeight(),icon.getImageObserver());
jframe.setSize(icon.getIconWidth(),icon.getIconHeight());

}

};
jframe.setTitle("測試背景圖片");
jframe.add(GImage);
jframe.pack();
jframe.setVisible(true);
jframe.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);

}

publicstaticvoidmain(String[]args){
newDrawing();

}

}

2、JLabel源代碼

packageswing.draw;
importjava.awt.Image;
importjavax.swing.ImageIcon;
importjavax.swing.JFrame;
importjavax.swing.JLabel;

/**利用JLabel來構建圖片*/
publicclassDrawing2{
JLabeljlpic=newJLabel();
JFramejframe=newJFrame();

publicDrawing2(){

init1Frame();
}

publicvoidinit1Frame(){
ImageIconicon=newImageIcon("image\benbenla.jpg");
icon.setImage(icon.getImage().getScaledInstance(icon.getIconWidth(),
icon.getIconHeight(),Image.SCALE_DEFAULT));
System.out.println(icon.getIconHeight()+""+icon.getIconWidth());
jlpic.setBounds(0,0,1366,768);
jlpic.setHorizontalAlignment(0);
jlpic.setIcon(icon);
jframe.setSize(1366,768);
jframe.add(jlpic);
jframe.pack();
jframe.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
jframe.setVisible(true);

}

publicstaticvoidmain(Stringargs[]){

newDrawing2();
}
}

添加控制項:

jlpic.setIcon(icon);
Containerc=newContainer();
JLabeluser=newJLabel("用戶:");
JLabelpassword=newJLabel("密碼:");
JTextFieldtxf_userName=newJTextField();
JPasswordFieldpwd_password=newJPasswordField()
{
publicvoidpaste(){
UIManager.getLookAndFeel().provideErrorFeedback(this);
}
};
user.setBounds(200,25,50,25);
password.setBounds(200,52,50,25);
txf_userName.setBounds(300,25,150,25);
pwd_password.setBounds(300,52,150,25);
c.add(user);
c.add(txf_userName);
c.add(password);
c.add(pwd_password);
c.add(jlpic);
jframe.setSize(1366,768);
//jframe.add();
jframe.add(c);

『貳』 安卓在java代碼中怎麼添加imageView圖片

1、創建imageview對象

2、設置imageview的圖片

3、添加到布局中

示例代碼

ViewGroupgroup=(ViewGroup)findViewById(R.id.viewGroup);//獲取原來的布局容器
ImageViewimageView=newImageView(this);//創建imageview
imageView.setLayoutParams(newLayoutParams(LayoutParams.WRAP_CONTENT,LayoutParams.WRAP_CONTENT));//image的布局方式
imageView.setImageResource(R.drawable.ic_launcher);//設置imageview呈現的圖片
group.addView(imageView);//添加到布局容器中,顯示圖片。
閱讀全文

與用java如何在布局中添加圖片相關的資料

熱點內容
海綿寶寶人物大全圖片 瀏覽:825
大寶衣服大全圖片 瀏覽:824
男生cf卡通圖片 瀏覽:948
武術女生圖片大全 瀏覽:809
可愛的小刺蝟圖片 瀏覽:815
傷心難過的圖片失望想哭男生 瀏覽:452
手機拍照怎麼配文字圖片 瀏覽:635
word圖片自己橫過來 瀏覽:946
黑色包裙上面配什麼衣服圖片 瀏覽:421
圖片與文字排版 瀏覽:650
生活不簡單盡量簡單過圖片可愛 瀏覽:541
唯美圖片男生抽煙大圖 瀏覽:322
有字可愛壁紙圖片圖集 瀏覽:578
裁剪圖片如何保存 瀏覽:969
中長半扎發型圖片 瀏覽:344
炫酷女生動漫圖片易畫 瀏覽:927
桌子簡單繪畫圖片 瀏覽:193
火龍果的簡單圖片 瀏覽:493
男生圖片溫柔三次元 瀏覽:366
動漫湖泊圖片 瀏覽:277