如何在kony中心加载屏幕

时间:2014-12-23 12:57:06

标签: kony

我正在使用kony框架开发桌面应用程序。登录时我的装载机没有出现在中心。它正好装在右侧。请帮帮我。

3 个答案:

答案 0 :(得分:2)

您可以按照以下方式设置加载屏幕:

kony.application.showLoadingScreen(skin, text, position, isBlocked, showProgressIndicator, properties)

其中positionconstants.LOADING_SCREEN_POSITION_ONLY_CENTER,仅在中心显示加载屏幕。默认情况下,它将是全屏constants.LOADING_SCREEN_POSITION_FULL_SCREEN

答案 1 :(得分:0)

使用以下方法在中心显示加载屏幕

function showLoadingScreen(){
  kony.application.showLoadingScreen(null, "Please wait...", 
  constants.LOADING_SCREEN_POSITION_ONLY_CENTER, true, true, {  
  shouldShowLabelInBottom: "true", separatorHeight: 30} )
}

答案 2 :(得分:-1)

 kony.application.showLoadingScreen("", "", constants.LOADING_SCREEN_POSITION_ONLY_CENTER, true, true, null);