I'm working on an application that contains many JFrames, with the amateurish result that my program appears in the taskbar many times, one for each currently visible JFrame. I'm aware that JInternalFrame might solve my problem, but I've already made so many JFrames it's hard to switch! Is it possible to make my already-made JFrames appear within an overarching JFrame? Perhaps to somehow "transfer" each JFrame into a JInternalFrame?

What I ultimately want my application to look like is something akin to an Android app, with several "activities" that you can navigate like a browser.

Thanks

link|improve this question
feedback

2 Answers

up vote 2 down vote accepted

Yeah, you could always get the contentPane from a JFrame and put it into the contentPane of a JInternalFrame (via the expected get and set methods), but it's many times not a good idea to try to add good code into a bad design. You may be better off refactoring your code and try to code towards the JPanel and not the JFrame. That way you'll have the flexibilty of placing your JPanels wherever you wish, be they JInternalFrames, JDialogs, JTabbedPane components, or swapped via CardLayout.

link|improve this answer
Thanks very much! Come to think of it, it shouldn't take too long, since most of the information is in JPanels within JFrames anyway. – Gaius Davidius Jul 31 '11 at 20:30
+1 See also this example. – trashgod Jul 31 '11 at 23:48
feedback

alternatives, then you only to switch between JPanels

Use CardLayout examples here

Use Tabbed Panes and here

link|improve this answer
+1 See also this example. – trashgod Jul 31 '11 at 23:47
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.