LWUIT In The General Session
Loading...
5,141
Loading...
Uploader Comments (vprise)
see all
All Comments (5)
-
I am starting with this Java ME development and to find this tool really helped me. I was wondering if there is going to be a Java FX integration or if you could do something with it.
Another thing. In this demo, the transitions are really smooth, while in some higher end phones they seem a little slow. Is this the framerate in the video? What spec should a phone have to run the GUI in a smooth way?
Smooth = dont drop frames
Thanks. Love the project
-
M3G is required for this particular effect, it isn't required for the library or the demo to work. 3D support is detected in runtime and enabled appropriately.
-
It required the M3G API for the 3D spinning menu?
Loading...
does UI provides features like showing data in Grid?
AdduJi 3 years ago
Depending on how you define a grid. If you are referring to something like Excel then no. However there is both a grid layout (allowing arbitrary components in a grid) and a list can be used for scrollable data sheets. This is covered in depth in a forum discussion in the project page.
vprise 3 years ago
yeah I mean Data Grid available which could be bound with some backend database.
AdduJi 3 years ago
Binding to a backend is possible since the List has a true Swing like MVC approach where the model is an interface and allows easy backend binding. Swing like renderers are also supported allowing for a very powerful grid like interface.
vprise 3 years ago
So the API actually has backward compatibility that disable the 3D feature for
devices older then CLDC1.1? Nice..
ShaiSoft 3 years ago
Yes it is a simple API to query the existence of 3D thus allowing code to conditionally disable 3D features.
vprise 3 years ago