0
很抱歉,如果這是太明顯了,但我想在Android下qpython如下:與qpython使用PLYER
from plyer import notification
notification.notify("something","else")
和我得到的錯誤,其一端與:我缺少什麼
NotImplementedError: No usable implementation found!
?
很抱歉,如果這是太明顯了,但我想在Android下qpython如下:與qpython使用PLYER
from plyer import notification
notification.notify("something","else")
和我得到的錯誤,其一端與:我缺少什麼
NotImplementedError: No usable implementation found!
?
通知必須通過幾個參數,這裏是如何使用它一個例子:
from plyer import notification
notification.notify(title="Kivy Notification",message="Plyer Up and Running!",app_name="Waentjies",app_icon="icon.png",timeout=10)
希望這有助於