The problem
By default all native Qt applications for MeeGo Harmattan (Nokia N9, Nokia N950) have toolbar which contains buttons at the bottom of the screen. Some applications do not need this toolbar and it has to be removed.
Solution
To remove the toolbar of a native MeeGo Harmattan QML application do the following steps:
- Disable the visibility of the toolbar at the main QML file and delete the menu:
-
ToolBarLayout {
-
id: commonTools
-
visible: false
-
}
- Disable tools on you page:
-
Page {
-
tools: null
-
}
Source Qt Developer Network
Ash
The Wizard at TizenExperts
Tech enthusiast and head "honcho" at TizenExperts. Work with Tizen and Developers and Love shiny tech that goes PING !!!!
Latest posts by Ash (see all)
- [Video] Arkon TAB Universal Tablet Car Mount – Hands On! - June 10, 2013
- Early Look at Intel’s Tizen Phone User Interface – Codenamed “Obsidian” - June 10, 2013
- [Video] Qt 5.1 Cinematic Experience Demo on Tizen Devices - June 4, 2013



One Response Comment
Weird, I was just trying to figure this ouy last night. Anyone know how to remove it from a Qt WebKit app on harmattan, where no QML file exists, but the toolbat still shows on my N9? Created with Qt Creator ‘HTML5 Application’ new project.