我正在尝试编译一个应用程序,它会有一个固定的窗口大小,一个无法缩放的应用程序。我在API中找到了这些函数,但在编译时它们似乎不起作用 -
var window = Ti.UI.currentWindow;
window.setHeight(500); // Set the window height to 800 pixels.
window.height = 500; // The same.
window.setMaxHeight(500);
答案 0 :(得分:3)
你可以通过编辑tiapp.xml解决这个问题,其中maxs和mins关闭宽度和高度。您还可以定义应用程序不会最大化或调整大小:
<width>700</width>
<max-width>700</max-width>
<min-width>700</min-width>
<height>500</height>
<max-height>500</max-height>
<min-height>500</min-height>
<fullscreen>false</fullscreen>
<resizable>false</resizable>
<maximizable>false</maximizable>
<minimizable>true</minimizable>
http://tidesdk.multipart.net/docs/user-dev/generated/#!/guide/getting_started: