Messages by WebSeed

4 topics, 18 messages
Kuix technical support » Switching between Screens

Something like this would work...

        screen = Kuix.loadScreen("foo.xml", null);
        screen.setCurrent();

        new Thread()
        {
            public void run() {
                try {
                    Thread.sleep(3000);
                }
                catch (InterruptedException ex) {
                    ex.printStackTrace();
                }
                screen = Kuix.loadScreen("bar.xml", null);
                screen.setCurrent();
            }
        }.start();

Kuix general board » Request for popup transitions

Hi,

 

This isn't a question, more a polite request/suggestion - it would be great if Kuix allowed simple transitions for popups. I've read elsewhere on the forum that this isn't on the roadmap for now, but would like to add my support to the idea anyway :)

Kuix general board » What do you think about Kuix ?

My experience with Kuix so far has been very positive. I have looked into other frameworks such as J2ME Polish (seems very buggy) and LWUIT (okay, but too heavyweight/abstracted for certain tasks). The real positive aspect about Kuix in my opinion is the XML + CSS method of defining the UI structure and 'look and feel' and the MVC architecture facilitated by the separate DataProvider/Frames/Widgets approach. I hope you continue to develop Kuix in the future.