<SplitWindow id="home" platform="ios" formFactor="tablet">
            <Require src="master" id="master"/>
            <Require src="detail" id="detail"/>
  </SplitWindow>

如果在两个窗口之间水平拖动strange behavior,则我有一个black separation line
window 会根据我的 Action 改变尺寸。



而且,如果我更改了Windows的width,则更容易识别black separation line
function demo() {
Alloy.Globals.master.win.width = 512;
Alloy.Globals.detail.win.width = 512;
}

[For test purpose you have to aim the exact pixel of the black separation line ]
您能否说出为什么会发生这种情况,以及如何停止这种行为?

最佳答案

看到这个问题后,我测试了我自己的 SplitWindow 应用程序(它不是 Alloy 应用程序),并且那里也存在错误。

我试图阻止这种情况发生的一切都是无用的。我相信它被认为是一个错误,应该在 Titanium JIRA 上报告。

关于javascript - 钛合金SplitWindow IOS奇怪的行为改变宽度,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/20538634/

10-11 14:12