试试这个:
Ext.Viewport.init();
Ext.create('Ext.Panel'({
fullscreen:true})
添加到您的主应用程序文件中。如果您的主视图是面板,这将起作用。您还可以将其添加为您的应用程序的属性:
Ext.application({
name: 'YourApp',
stores: [
],
controllers: [
],
views: [
],
viewport: {
autoMaximize: true
},
launch: function(){
}
});