i have designed an application using java swing, how to improve the look and feel and User interface?
+3
A:
Perhaps change the look and feel to something more "native": http://download.oracle.com/javase/tutorial/uiswing/lookandfeel/plaf.html
Noel M
2010-09-03 12:56:34
+1
A:
While the question is very vague....I'll provide an obvious quick tip.
Make sure to handle events and/or heavy processing on a background thread. SwingWorker is now included in the Java 6 JRE/JDK
SwingWorker<Void, Void> worker = new SwingWorker<Void, Void>() {
@Override
protected Void doInBackground() throws Exception {
//some task
return null;
}
@Override
protected void done() {
//when done
}
};
threadPool.submit(worker);
Eric W
2010-09-03 12:59:09
+5
A:
It depends upon your objective.
- If you want to go in the desktop way, maybe by using some of Kirill Grouchnikov works : Substance LnF and Flamingo (which emulates the Office ribbon using Swing code)
- If you want to go in the pimp'd direction, take a look at old works of Chet Haase and Romain Guy
Riduidel
2010-09-03 13:00:42