当我在我的 Android-WebKit 浏览器上访问http://www.wikpic.com/时,页面会全屏呈现,换句话说,显示 URL 的导航栏会消失。我怎样才能做到这一点?
我试过这个选项,但它不起作用:
Ext.create('MyApp.view.MyList', {fullscreen: true});
这是我的 app.js 代码:
Ext.Loader.setConfig({
enabled: true
});
Ext.application({
models: [
'Contacto'
],
stores: [
'Contactos'
],
views: [
'MyList'
],
name: 'MyApp',
launch: function() {
Ext.create('MyApp.view.MyList', {fullscreen: true});
}
});
谢谢!