appframework

Switching from Jquery Mobile to AppFramework

不想你离开。 提交于 2019-12-02 13:59:33
I've built a project using Jquery Mobile. JQM seems perfect for fast prototyping but the end result on an iphone 3GS/IOS 5.1 is far from fluid. I've tried a lot of hacks/tricks to make it faster and got rid of transitions but still, I cannot get a satisfying result. I've been looking around. What I need is a lightweight solution with a decent UI (JQM is perfect for what I need in that domain). trigger.io and AppFramework seem to be the 2 solutions which are available (maybe I'm missing some others). I'd like to give AppFramework a go but I'd like to have feedback from people who have made the

How to convert a Swing Application to an Applet?

雨燕双飞 提交于 2019-12-02 00:52:54
问题 I created a desktop application with Swing Application Framework, now how can I convert it to an applet? The main class extends SingleFrameApplication. EDITED: This is the starting class, used NetBeans GUI builder: public class PhotoApp extends SingleFrameApplication { /** * At startup create and show the main frame of the application. */ @Override protected void startup() { show(new PhotoView(this)); } /** * This method is to initialize the specified window by injecting resources. * Windows

How to convert a Swing Application to an Applet?

假装没事ソ 提交于 2019-12-01 22:14:38
I created a desktop application with Swing Application Framework, now how can I convert it to an applet? The main class extends SingleFrameApplication. EDITED: This is the starting class, used NetBeans GUI builder: public class PhotoApp extends SingleFrameApplication { /** * At startup create and show the main frame of the application. */ @Override protected void startup() { show(new PhotoView(this)); } /** * This method is to initialize the specified window by injecting resources. * Windows shown in our application come fully initialized from the GUI * builder, so this additional