我在.kv
文件中有以下代码,用于添加ActionBar
。在小型应用程序中,这没有任何问题。将此代码添加到大型应用程序时,我会收到“关键时钟”警告:
[CRITICAL] [Clock ] Warning, too much iteration done before the
next frame. Check your code, or increase the Clock.max_iteration
attribute.
我更改了kivy_clock
设置,但没有解决问题的设置。
当我在评论中添加ActionButton
的text:属性或将其替换为图标时,ActionBar
会正确显示,而不会发出任何警告。
这可能是什么问题?我非常绝望。
ActionBar:
font_size: 8
height: 45
background_image: './images/white-bg.png'
background_color: 0.6,.6,.6,1
ActionView:
ActionPrevious:
title: "NovaGuide"
with_previous: False
app_icon: './images/NG-Creator32.png'
ActionOverflow:
ActionButton:
text: "help"
ActionButton:
icon: './images/ic-menu-white.png'
ActionGroup:
icon: './images/ic-menu-white.png'
ActionButton:
text: "profile"