I have created a couple of applications and they all have a 80's style static user interface, I want my interfaces to be more dynamic and interactive similar to modern day apps and websites. What can I do to improve?
Welcome to the Java Programming Forums
The professional, friendly Java community. 21,500 members and growing!
The Java Programming Forums are a community of Java programmers from all around the World. Our members have a wide range of skills and they all have one thing in common: A passion to learn and code Java. We invite beginner Java programmers right through to Java professionals to post here and share your knowledge. Become a part of the community, help others, expand your knowledge of Java and enjoy talking with like minded people. Registration is quick and best of all free. We look forward to meeting you.
>> REGISTER NOW TO START POSTING
Members have full access to the forums. Advertisements are removed for registered users.
I have created a couple of applications and they all have a 80's style static user interface, I want my interfaces to be more dynamic and interactive similar to modern day apps and websites. What can I do to improve?
I suppose you have used Swing (since you have posted in AWT / Java Swing). User interfaces in Swing are rather "traditional" and not so very "cool". Are you searching for special graphical effects like shadows, animations, fadings and so on? At a certain degree these are possible in Swing but at a cost of more sophisticated code (that require a deeper knowledge on advanced concepts in Java 2D). And there's a book about this: Filthy Rich Clients.
But please, describe your current applications and where/in what you would like to improve.
Andrea, www.andbin.net — SCJP 5 (91%) – SCWCD 5 (94%)
Useful links for Java beginners – My new project Java Examples on Google Code
keepStriving (December 21st, 2013)
I mean things like shadows, animation etc.
I'll check out the books, thanks.