所以,我有一台IP摄像机,我知道来自IP摄像机的jpg格式的图像网址。我想将此图像添加到Kivy应用程序,但是当我向AsyncImage的源添加url时,它只是一直显示重新加载的圆圈,而不显示图像。这是一种以时间间隔显示图像的方法,例如每500毫秒?
提前致谢
答案 0 :(得分:0)
使用Android的处理程序:
new Handler().postDelayed(new Runnable(){
@Override
public void run(){
// do your work
}}, 500); //time in 500 millisecond
修改强> 对于python,请使用:
def hello():
print "hello, world"
t = Timer(30.0, hello)
t.start()