Specific widgets for mobile os (android)
Starting to dig into Qt+Android, I wonder if there are specific adaptions to the somehow standard UI in tablets, for example a kinetic listbox (scrollable with the finger without a scrollbar). Does these exist or have to be simulated with the standard stuff? (any suggested reading on the topic will be appreciated)
Thanks!
juan
Re: Specific widgets for mobile os (android)
I guess with QML you can have a scrollable list by default.
If using QWidgets, you will need to inherit your own class.. there was some code similar like it.. flickcharm. search for it.
Re: Specific widgets for mobile os (android)
Thanks for your reply. Wondering if as a strategy, would make sense to implement all the UI aspects in QML connecting to C++ for all the other stuff, logic, graphics etc.