Placing Code On Top Of A Background Image In JSwing

Dec 10, 2013

I'm making a pong game but I would like to use a basketball court image behind my code to give it a prettier look (the ball is also a basketball), but I can't seem to get my code to appear on top of my basketball court image, the image just overlaps my code.

View Replies


ADVERTISEMENT

Add A Background Image For Code Without Disappearing Button And Label?

Mar 10, 2014

How can i add a background image for this code without disappearing the button and label? I want a frame that has a background and still shows the buttons and label that I place. and how can I insert Buffered Reader in this code, this is a file organizer, but it only shows first line of a text file. I want to show the whole text file. And is it possible to also show path of the file?

import javax.swing.JFrame;
import javax.swing.JButton;
import javax.swing.JTextField;
import java.awt.Color;
import java.awt.Container;
import java.awt.FlowLayout;
import java.awt.Graphics;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.util.Scanner;

[code]....

View Replies View Related

JButton Image Does Not Show On Background Image

Feb 23, 2014

I successfully added a background image on the Panel but I can't create my JButton image on top of my background image.

ImageIcon piano = new ImageIcon("src/img/piano_backgrd.png");
JLabel backlabel = new JLabel(piano);
panel.add(backlabel, new Integer(Integer.MIN_VALUE));
backlabel.setBounds(0, 0, piano.getIconWidth(), piano.getIconHeight()); 
JButton volup = new JButton(new ImageIcon("src/img/volup.png"));
volup.setLocation(10, 0);
panel.add(volup);

View Replies View Related

How To Add Background Image To Frame

Mar 20, 2014

I'm using notepad++

I want add background Image

View Replies View Related

How To Set Background Image To JPanel

Apr 6, 2014

how to set background image to jpanel

View Replies View Related

Setting Image As Background?

Jan 9, 2015

This is my code and it works! But how/where do I set a background image for it to appear as the background of my calculator? The code I have for it is this -

window.setContentPane(new JLabel(new ImageIcon("C:UsersComputerDownloadschristm as1.jpg")));

My code is below.

import javax.swing.*;
import java.awt.*;
import java.awt.event.*;
/**
* Program using SWING components to create a Christmas themed Calculator.
*/
public class ChristmasCalculator implements ActionListener

[code]....

View Replies View Related

Set Background Image To Calculator Using JLabel?

Jan 13, 2015

I have tried to set a background Image to a calculator usinf JLabel. However I've ended up with my image to the left of my calculator , my calculator textfield becoming the size of the background image and then all my buttons below it.
Like so(if you can view the image)..Calculator.jpg

How can I fix this so the background is behind my buttons and my text area is a normal size again.

My code is below :

import javax.swing.*;
import java.awt.*;
import java.awt.event.*;
 
/**
* Program using SWING components to create a Christmas themed Calculator.
*/
public class GridBag1 extends JFrame implements ActionListener

[Code] ....

View Replies View Related

How To Set Background Image Of JLayeredPane And Then Add Jbutton

Apr 10, 2014

Actually i want to develop a game for that i need a background with a image and over this background i want to move some objects (which are images) and also want to add some button.

Here is my Code.

The Main Class

package last;
import java.awt.*;
import javax.swing.*;
public class Last extends JFrame{
public static void main(String[] args) {
Last l =new Last();
l.setSize(900, 600);

[Code] .....

When i execute the above program only the background image is shown.

View Replies View Related

How To Make Image Background For A Window

Jun 17, 2014

I would like to learn how to add an image background to a window in java that I can put controls like buttons, textboxes, and checkboxes in front of. I already tried using a JLabel with an ImageIcon but I cannot overlay controls over the JLabel. From what I understand there are multiple ways to do this. What is the best way and how can I do it?

View Replies View Related

How To Add JPanel With Background Image To Already Setup GUI

Apr 30, 2014

I am trying to set a picture in the background of my GUI. I had already made the GUI with the all the required buttons and labels. So I was trying to separately make a class which extends JPanel and add a picture to a panel by overriding the paintComponent() method, and then added it to a frame (I did not set the default layout of the frame, so it was the default...), and it worked very fine. Here is the code:

Java Code:

private BufferedImage image;
public ParentPanel() {
try {
image = ImageIO.read(getClass().getResource("/com/dev_nna/scheduler/UI/1405188.png"));
} catch (IOException ex) {
ex.printStackTrace();

[code]....

Then I needed to add this panel with background picture to the background frame of my already made frame with all the buttons on it.The layout of the parent frame of my GUI was BorderLayout(50, 50), panels (with buttons) were added to it n the north and south positions.

Then I tried to add a JPanel with the background image to the parent frame (of my GUI), (I wanted it to elapse the entire frame, and come under all the buttons and controls, which were only present in the north and south positions of the border layout), and then the panels holding the buttons to the north and south postions of this panel, everything disappeared.

If I don't do anything except adding this panel with the background image to the parent frame, it only takes up the place not taken up by the two panels on the frame (Border Layout)

how to add this panel to the parent frame of my GUI such that it elapses the entire parent frame's background, and the panels containing the buttons should sit on it.

IMPORTANT PARTS OF CODE:-
Java Code:
//TOP LEFT PANEL
JPanel topleftpanel = new JPanel(new FlowLayout(FlowLayout.LEFT, 5, 5));
parentPanel_top.add(topleftpanel);
topleftpanel.setOpaque(false);

[code]....

View Replies View Related

Draw JButton Over Background Image

Aug 3, 2014

I've tried multiple things but I can't seem to figure out how to get my JButton over the background graphics. On lines 104-108 I create the JButton I need to put on the screen, though I have no clue how to draw it. How I can paint over this background and have my button stay there?

public static final int WIDTH = 1024;
public static final int HEIGHT = 640;
private Thread thread;
private boolean running;
private BufferedImage image;
private Graphics2D g;

[Code] .....

View Replies View Related

Adding Background Image Using JLabel?

Jan 13, 2015

I've tried to add a background image to my calculator , however I have ended up with this ...Calculator.jpg

How do I fix it so the image is behind my buttons etc (as a background) And how do I fix my textarea so it is back to the normal size and not the height of the image? My code is below, please be specific.

import javax.swing.*;
import java.awt.*;
import java.awt.event.*;
 /**
* Program using SWING components to create a Christmas themed Calculator.
*/

public class GridBag1 extends JFrame implements ActionListener {
private JFrame window= new JFrame("Christmas Calculator");

[Code] .....

View Replies View Related

Adding Background Image To Program

Oct 10, 2014

I am trying to add a background image to this program by putting this code

image1 = new ImageIcon(getClass().getResource("small.png"));
label1 = new JLabel(image1);
add(label1);

into this code

package com.ui;
import com.socket.History;
import com.socket.Message;
import com.socket.SocketClient;
import java.awt.event.WindowEvent;
import java.awt.event.WindowListener;
import java.io.File;

[Code] ....

And its giving me this error:

Exception in thread "AWT-EventQueue-0" java.lang.NullPointerException
at javax.swing.ImageIcon.<init>(Unknown Source)
at com.ui.ChatFrame.<init>(ChatFrame.java:44)
at com.ui.ChatFrame$6.run(ChatFrame.java:412)
at java.awt.event.InvocationEvent.dispatch(Unknown Source)

[Code] .....

View Replies View Related

Setting Background Image In Java

Mar 7, 2014

I want to set a background image in Java but nothing is working...

Java Code:

import javax.swing.JFrame;
import javax.swing.JPanel;
import javax.swing.JButton;
import java.awt.Graphics;
import java.awt.Image;
import java.awt.Toolkit;
import java.awt.FlowLayout;

class Background extends JPanel{

[Code] ....

Everything works fine except the picture, it's not showing. The b.png file is in the folder where the java file is. What should I do?

View Replies View Related

Changing Background Image Of JPanel When Certain Condition Meets?

Apr 22, 2015

In my program one of the panel has a background image and I need that background image to be updated/refresh or changed whenever the panel reaches certain number of clicks

here's the code

Constructor/gui
import java.awt.*;
import javax.swing.*;
import javax.swing.text.*;;
 public class demo { 
JFrame frame = new JFrame ("Idle Game Test!");
JPanel backGroundPanel = new JPanel ();

[code].....

also is there other way to access those static variables? the way i implemented them works but i do think there are other ways that are more suitable or better but i cant figure out.

View Replies View Related

Unable To Remove White Background Of PNG Image Added In Transparent JPanel

Sep 25, 2014

I am unable to clear disappear the background of .png image added in a translucent JPanel. I have tried it using JLabel but the image added is with white background. How can i get rid of this white background...

import javax.swing.*;
import java.util.*;
import java.awt.*;
public class HomePage
{
JFrame frame;
JPanel pnl1, pnl2, pnl3;
JLabel lbl;

[Code] .....

View Replies View Related

Get Background Image Showing Other Two Are Not Showing On Screen

Jan 20, 2015

public void paint(Graphics g) {
g.drawImage(Background, bg1.getbX(), bg1.getbY(), this);
for(int i=0;i==400;i+=10){
g.drawImage(block1,fg1.getBlockX(),fg1.getBlockY(),this);
g.drawImage(block2,fg1.getBlockX(),fg1.getBlockY()+10,this);
}
}

This is what im dealing with right now. When i click run i only get the background image showing the other two are not showing on the screen.

View Replies View Related

Code Is Used To Find Coordinates Of Image

Jan 27, 2015

The code is used to find coordinates of an image and i cannot understand how it works.

for (int y = 0; y < height; y += 2) {
for (int x = 0; x < width; x += 2) {
int px1 = secureRandom.nextInt(4);
int px2 = secureRandom.nextInt(4);
while (px1 == px2)
px2 = secureRandom.nextInt(4);

int px1x = (px1 < 2) ? px1 : px1 - 2;
int px1y = (px1 < 2) ? 0 : 1;
int px2x = (px2 < 2) ? px2 : px2 - 2;
int px2y = (px2 < 2) ? 0 : 1;

View Replies View Related

Swing/AWT/SWT :: Crop Image Code In Applet

Apr 8, 2014

Code to crop and save an image in applet.

View Replies View Related

Placing Mines And Another Point On A Field

Sep 29, 2014

I need to fill up 1/10th of the board with mines but i am only able to successfully put 1! also my goal is not showing up on the game even though i put it as an up arrow.

package Homework4;
import java.util.Random;
import java.util.Scanner;
public class HW4 {
//Creates a new type to be used to create the board

[Code] ......

View Replies View Related

Placing Numbers Inside Array

Apr 3, 2015

"on each step of the loop you can calculate an entire year as opposed to a single month, otherwise you can calculate monthly, but instead of printing, create an array and fill it up with your solutions, then have a second loop where you add them up by dozens to print yearly values, alternatively, have a counter k that adds up to 12, and two variables for adding up the monthly results, increment these after you calculate the monthly value, and whenever k hits 12, print them and reset to zero. print a final time once you leave the loop. "

int year = loanDurationYears-14;
int[] years= new int[loanDurationYears];
periods = loanDurationYears*12;
for(int i=0;i<1;i++)
{
for(year = 0;year<loanDurationYears;year++)
{
years[year] = year+1;
 
 [code]....

View Replies View Related

Placing Integers In Linked List From Text File?

Mar 30, 2015

Trying to read integers from a text file and place them in a linked list in order. Program is compiling and running fine, just not the way I am intending when I am calling the methods. (Note: You have to enter the file location in the var x if you plan on running this.)

import java.io.*;
import java.util.*;
 public class Node {
public int value;
public Node next;
  Node(int x) {
this.value = x;

[code]....

View Replies View Related

Swing/AWT/SWT :: Updating DefaultTable Model - Placing Text?

Jul 2, 2014

I have been going in circles trying to update a JTable. For now I just need to take input from a textfield after clicking on a JButton and have that text be placed in the JTable. LeftPanel listens, while RightPanel holds the table. Here is what I have so far:

package reminder.views;

import java.awt.Dimension;
import java.awt.GridBagConstraints;
import java.awt.GridBagLayout;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import javax.swing.JButton;
import javax.swing.JLabel;
import javax.swing.JPanel;
import javax.swing.JTextField;

public class LeftPanel extends JPanel {

]Code] ....

View Replies View Related

Placing File In Java Application Accessible For Both Main And Test

Oct 1, 2014

I have style sheet file (e.g. myStyle.xslt). I am trying to decide where to put this file in my web application so that both src and test can access it. All my source in packages inside /src folder and test code in packages inside /test folder.

View Replies View Related

Placing Randomly Chosen Words From Text File Into 2D Array

Apr 5, 2014

I have an assignment for college that involves placing randomly chosen words from a text file into a 2-d array. I have nearly completed ithowever I am having difficulty with a list of string type.What I have done so far is below,

import java.util.Arrays;
import java.util.List;
import java.util.ArrayList;
import java.io.*;
import java.lang.Math;
 
[code]....

when I try to run an instance of the program(using BlueJ) I get an error saying there is a null pointer exception at line 35 which is wordsForGrid. add (puzzleWords.get(pos));

I am thinking that this is related to the fact that at this line in the loadWordsFromFile method List <String>words=new ArrayList<String>(); I could not create an empty list of string type, i.e List<String>words = new List<String>();

Is this correct? Or am I looking in the wrong place. The textfile I am using contains over 6000 words on a separate line for each if that makes any difference.

View Replies View Related

Placing JPanel From A Class Into Frame Of Another Class

Aug 19, 2014

I can't figure out how to place a JPanel from a class(Game) in to a another class(Core). I have bean stuck on this for about three days now I bean doing my research but no luck so now I think I should ask directly so here I am. Now to state clearly I am trying to place a JPanel named Game_Screen witch is in another class named Game into a JFrame named frame witch is in a another class named Core.

Now both of this classes are with in the same package and my IDE Is Eclipse.The JPanel Game_Screen has other swing pieces attached to it that should also be added with the panel on to the frame.But the change is screen should only happen when I click the buttons New Legend(N),Load Legend(L),Help(H) what already happens is that when you click any of this buttons menu.setVisible(false); is activated making everything on screen at the time disappear from the screen but the panel does not a pear.

Here's my code:

//Class - Core-------
package Source;
import java.awt.*;
import javax.swing.*;
import java.awt.event.*;
public class Core {
static Game GG = new Game();
public static void main(String[] args) {
JFrame frame = new JFrame();

[Code]...

View Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved