1

我通过以下 api 在 kony 中使用加载屏幕-

kony.application.showLoadingScreen("BusyIndicator","Loading data...",constants.LOADING_SCREEN_POSITION_FULL_SCREEN, true,true,null);

BusyIndi​​cator 是我制作的自定义皮肤,其中包括背景颜色为黑色,透明度为 35%。

但是,我收到黑色文本“正在加载数据...”。

请帮助我通过更改文本颜色和大小来自定义此文本。

4

2 回答 2

1

您需要应用项目中可用的现有皮肤(例如“slTextWhite”)并在如下代码中使用相同的皮肤:

kony.application.showLoadingScreen("slTextWhite","Please wait",constants.LOADING_SCREEN_POSITION_ONLY_CENTER,true,true,{}); 

希望这可以帮助!

于 2016-12-04T04:41:27.380 回答
0

你可以试试这个方法

kony.application.showLoadingScreen("sknLoading"," loading ....", constants.LOADING_SCREEN_POSITION_FULL_SCREEN, true, true,     {shouldShowLabelInBottom: "true", separatorHeight:200})

其中sknLoading要在普通皮肤中定义——您将在皮肤底部看到“ common ”。

您也可以设置背景颜色、字体颜色和其他属性。

于 2015-04-15T10:49:58.427 回答