我正在使用关于api的加载屏幕 -
kony.application.showLoadingScreen("BusyIndicator","Loading data...",constants.LOADING_SCREEN_POSITION_FULL_SCREEN, true,true,null);
BusyIndicator是我自己定制的皮肤,包括背景颜色为黑色,透明度为35%。
但是我收到了文字'正在加载数据...'黑色。
请帮助我通过更改文字颜色和尺寸来自定义此文字。
答案 0 :(得分:1)
您需要应用项目中可用的现有外观(例如" slTextWhite"),并在下面的代码中使用相同的内容:
kony.application.showLoadingScreen("slTextWhite","Please wait",constants.LOADING_SCREEN_POSITION_ONLY_CENTER,true,true,{});
希望这有帮助!
答案 1 :(得分:0)
你可以试试这种方式
kony.application.showLoadingScreen("sknLoading"," loading ....", constants.LOADING_SCREEN_POSITION_FULL_SCREEN, true, true, {shouldShowLabelInBottom: "true", separatorHeight:200})
在普通皮肤中定义 sknLoading - 您将在皮肤底部看到“ common ”。
您也可以设置背景颜色,字体颜色和其他属性。