首页 > 解决方案 > 如何在 kivymd 功能开始时显示加载屏幕?

问题描述

在从 Web 获取数据期间,我想在我的 Kivymd 应用程序中使用加载屏幕。但是当我运行我的代码时,获取数据后会出现加载屏幕。

我想显示加载屏幕,从网络获取一些数据,然后在新屏幕上显示结果。
这是我get_data职能的一部分。此功能在用户单击按钮时运行。

def get_data(self):
    self.root.ids.MainScreen.pos_hint = {"center_x": .5, "center_y": 50} # Hide main screen
    self.root.ids.LoadingScreen.pos_hint = {"center_x": .5, "center_y": .5} # Show loading screen
    requests.get("https//.....")
    # Code more

加载大约需要十秒钟。我将屏幕移动代码放在我的函数顶部,但为什么屏幕移动代码在函数之后运行?如何解决这个问题?

我正在使用 Windows 10 和 Python 3.8。

标签: pythonkivypython-3.8kivymd

解决方案


在所有请求工作完成之前,您可以使用threadingClock.schedule移动到加载屏幕。在此处查看更多详细信息

def get_data(self):
    self.root.ids.MainScreen.pos_hint = {"center_x": .5, "center_y": 50} # Hide main screen
    self.root.ids.LoadingScreen.pos_hint = {"center_x": .5, "center_y": .5} # Show load screen
    Clock.schedule_once(function_to_get_data)
def function_to_get_data(self, *args):
    #code to get data

更新: 这是带参数的线程代码:

def get_data(self):
    self.root.ids.MainScreen.pos_hint = {"center_x": .5, "center_y": 50} # Hide main screen
    self.root.ids.LoadingScreen.pos_hint = {"center_x": .5, "center_y": .5} # Show load screen
    threading.Thread(target = function_to_get_data, args=(param,))
def function_to_get_data(self, param):
    #code to get data

推荐阅读