第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問題,去搜搜看,總會(huì)有你想問的

KIVY:如何同時(shí)處理多項(xiàng)任務(wù)

KIVY:如何同時(shí)處理多項(xiàng)任務(wù)

人到中年有點(diǎn)甜 2023-01-04 10:24:29
我想在做其他事情的同時(shí)在 kivy 中顯示加載動(dòng)畫。我怎樣才能做到這一點(diǎn)?對(duì)不起,我沒有示例代碼,我只是不知道從哪里開始。
查看完整描述

1 回答

?
慕尼黑5688855

TA貢獻(xiàn)1848條經(jīng)驗(yàn) 獲得超2個(gè)贊

我遇到了同樣的問題,您可以使用線程來實(shí)現(xiàn)。


我不確定您要完成什么,但是假設(shè)您想在單擊按鈕時(shí)加載某些內(nèi)容。加載時(shí)你想顯示一個(gè)彈出窗口說“正在加載”。這是一個(gè)簡單的示例程序,可以讓您執(zhí)行此操作。


main.py


import threading

import time


from kivy.app import App

from kivy.uix.popup import Popup

from kivy.uix.label import Label



class ExampleApp(App):

    def show_popup(self):

        # Create and open a popup

        self.loading_pop = Popup(title='Please wait', 

                                 content=Label(text='Loading...'),

                                 size_hint=(.8, .5), auto_dismiss=False)

        self.loading_pop.open()


    def process_btn_click(self):

        self.show_popup() # Open the popup


        # Start a thread, this allows you to display the popup while

        #     running some long task

        my_thread = threading.Thread(target=self.some_long_task)

        my_thread.start()


    def some_long_task(self):

        current_time = time.time()

        while current_time + 3 > time.time():  # 3 seconds

            time.sleep(1)


        # When the task is done, let the popup display "Done!"

        self.loading_pop.content.text = 'Done!'

        # Also let the user click out of the popup now

        self.loading_pop.auto_dismiss = True



if __name__ == '__main__':

    ExampleApp().run()

例子.kv


Screen:

    Button:

        text: 'Click me'

        pos_hint: {'center_x': .5, 'center_y': .5}

        size_hint: .3, .2

        on_release:

            app.process_btn_click()

希望這回答了你的問題!


查看完整回答
反對(duì) 回復(fù) 2023-01-04
  • 1 回答
  • 0 關(guān)注
  • 113 瀏覽
慕課專欄
更多

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)