Results 1 to 5 of 5
Thread: Overlapping JLabels
- 05-22-2011, 07:52 AM #1
Member
- Join Date
- May 2011
- Location
- Maryland
- Posts
- 38
- Rep Power
- 0
Overlapping JLabels
How can I get two JLabels (with images inside them) to overlap each other? If it helps, I am working on a monopoly project in which I have an image of the board space as one JLabel and an image of the game piece as another JLabel. When the piece lands on the space I want it to place the image ON TOP of the board space image. Is this at all possible? Any help is appreciated
- 05-22-2011, 09:09 AM #2
May be useful:
Compound Icon « Java Tips Weblog
Dual Icon « Java Tips Weblog
db
- 05-22-2011, 05:00 PM #3
Senior Member
- Join Date
- Jul 2009
- Posts
- 1,143
- Rep Power
- 5
You can add another component to a JLabel which contains an Icon. All you need to do is set a layout manager for the label. Something like:I am working on a monopoly project in which I have an image of the board space as one JLabel and an image of the game piece as another JLabel.
Now the game piece will be centered on the background.Java Code:JLabel background = new JLabel(....); background.setLayoutManager( new GridBagLayout() ); Jlabel gamePiece = new JLabel(...); background.add( gamePiece );
- 05-24-2011, 02:48 PM #4
Member
- Join Date
- May 2011
- Location
- Maryland
- Posts
- 38
- Rep Power
- 0
camickr, what kind of layout should i use? i still can't figure this out, the piece just appears next to the space rather than on top of it
- 05-24-2011, 04:47 PM #5
Senior Member
- Join Date
- Jul 2009
- Posts
- 1,143
- Rep Power
- 5
Similar Threads
-
Two Overlapping Components
By javadeveloper2011 in forum AWT / SwingReplies: 4Last Post: 03-26-2011, 06:46 PM -
frame overlapping
By sameerk in forum JavaServer Pages (JSP) and JSTLReplies: 0Last Post: 08-19-2010, 07:45 AM -
Overlapping JLabels
By techbossmb in forum AWT / SwingReplies: 3Last Post: 09-21-2009, 03:21 PM -
Help with overlapping JPanels
By xcallmejudasx in forum New To JavaReplies: 2Last Post: 03-09-2009, 10:19 PM -
overlapping forms
By keerthi_y19 in forum New To JavaReplies: 4Last Post: 08-26-2008, 10:30 PM


LinkBack URL
About LinkBacks
Reply With Quote
Bookmarks