When I visit http://www.wikpic.com/ on my Android-WebKit-browser the page renders on fullscreen, in other words the navigation bar that shows the URL disappear. How can I do
You are looking for the autoMaximize configuration for Viewport:
Ext.application({
viewport: {
autoMaximize: true
},
...
});
Remember though that it may cause some issues (taken from the Sencha docs):