如何在kivymd的功能开始时显示加载屏幕?

时间:2021-02-11 09:18:16

标签: python kivy python-3.8 kivymd

我想在从网络获取数据期间在我的 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。

2 个答案:

答案 0 :(得分:1)

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

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

答案 1 :(得分:1)

您可以使用窗口管理器。如果没有完整的代码,很难说,但类似于:

    from kivy.uix.screenmanager import ScreenManager, Screen
    from kivy.core.window import Window
    
class MainScreen(Screen):
...
    def get_data(self):
        self.parent.current = 'LoadingWindow'
        get your data
        wait for it to return
        self.parent.current = 'MainWindow'
...
class LoadingScreen(Screen):
    pass
...
class WindowManager(ScreenManager):
    pass

这假设 a.o. get_data 在 MainScreen 类中,LoadingScreen 和 MainScreen 被定义为窗口管理器中的屏幕,像这样(在 .kv 中)

WindowManager:
    LoadingScreen:
    MainScreen:

<MainScreen>:
    id: mainWindow
    ...

<LoadingScreen>:
    id: LoadingWindow
    ...
相关问题