last week at BBLive I got the information, that now also my app ‘ekkes Tea Timer‘ got certified as ‘Built For BlackBerry‘ 🙂
you see: even a small utility app like a Tea Timer can become certified as ‘Built For BlackBerry’:
- I’m trying to follow Cascades UI Guidelines as much as possible
- social networks integrated: FourSquare, BBM
- Invocation Framework: FourSquare, BBM, Remember (Evernote)
- Application Menu
- working in the minimized background, notifying the Hub if Tea is ready
I’m proud because now there are already 3 of my apps certified as ‘Built For BlackBerry’
I’m very curious how you managed to create two-line DropDown Options (https://appbus.files.wordpress.com/2013/02/screen_19.png). Did you have to create a custom component for this?
nothing special
creating the DropDown in QML
filling with data from C++
here’s some code:
DropDown* dd;
dd = Application::instance()->scene()->findChild(
"notebookSelected");
if (!dd) {
qDebug() <removeAll();
QList nl = mNotebookService.notebooks();
AccountService as;
QString providerDisplayName;
QString optionsValue;
int i;
for (i = 0; i add(
Option::create().text(n.name()).value(optionsValue).description(
providerDisplayName));
}