繁忙指标在IOS中的方向更改时调整大小。有没有办法,我们可以为繁忙的指标提供固定的高度和宽度?
答案 0 :(得分:0)
您可以查看以下问题:IBM Worklight 6.0 - Does WL.BusyIndicator support text wrapping for iOS?
例如:
var busy = new WL.BusyIndicator(null, {
text: "Ouverture de session",
boxLength: 170 // Play with this value to change the size of the indicator 'box'.
});
busy.show();
然而,遗憾的是,在更改为横向模式时,这并没有很好地“翻译”......
你能做的是:
你应该选择第一个选项......
请注意,这意味着您无法使用WL.BusyIndicator.show/hide
;您需要使用插件提供的API。