我想尝试一个Garmin WachFace,很快就遇到了folgnden错误,但很遗憾我不知道为什么会发生,也许有人可以帮助你?
Cannot find symbol ':setText' on type 'PolyType<Null or $.Toybox.WatchUi.Drawable>'
我使用下面的代码:
function onUpdate(dc as Dc) as Void {
setClockDisplay();
setDateDisplay();
setBatteryDisplay();
setStepCountDisplay();
setStepGoalDisplay();
setNotificationCountDisplay();
setHeartrateDisplay();
// Call the parent onUpdate function to redraw the layout
View.onUpdate(dc);
}
private function setClockDisplay() {
var clockTime = System.getClockTime();
var timeString = Lang.format("$1$:$2$", [clockTime.hour, clockTime.min.format("%02d")]);
var view = View.findDrawableById("TimeLabel");
view.setText(timeString);
}
}
对所有. setText()都会抛出该错误。在本例中为9次
我能想到的都试过了。
1条答案
按热度按时间8zzbczxx1#
以下解决了该问题:
变化
变成
不要!