首页 > 解决方案 > 有列表时如何在kivymd中切换屏幕

问题描述

我创建了一个音乐播放器,当我单击它应该切换屏幕的列表时,我尝试添加切换屏幕的功能,但它给了我一个我根本不知道的错误。它说:引发AttributeError(key),“on_press:root.manager.current ='controller'也有问题

对不起,如果我的代码有点乱。

from kivy.lang import Builder
from kivymd.uix.list import OneLineListItem
from kivymd.app import MDApp
from kivy.core.audio import SoundLoader
from kivy.uix.screenmanager import Screen, ScreenManager
import os

helper_string = """
ScreenManager:
    MainScreen:
    PlayingScreen:

<MainScreen>:
    name: 'list'
    BoxLayout:
        orientation: "vertical"
        MDToolbar:
            title: "Demo music player"
        ScrollView:
            MDList:
                id: scroll
                on_press: root.manager.current ='controller'


<PlayingScreen>:
    name: 'controller'
    MDLabel:
        text : 'Hello world'
        halight: 'center'

"""

class MainScreen(Screen):
    pass


class PlayingScreen(Screen):
    pass


sm = ScreenManager()
sm.add_widget(MainScreen (name='list'))
sm.add_widget(PlayingScreen (name='controller'))

class MainApp(MDApp):
    def build(self):
        self.sound = None
        self.theme_cls.theme_style="Dark"
        screen = Builder.load_string(helper_string)
        return screen
        
    def on_start(self):
        for root, dirs, files in os.walk('assets'):
            for file in files:
                if file.endswith('.mp3'):
                    required_file = file
                    the_location = os.path.abspath(os.path.join(root, required_file))
                    self.root.ids.scroll.add_widget(OneLineListItem(text=the_location, 
                                                                    on_release=self.play_song))

    
    def play_song(self, onelinelistitem):
        the_song_path = onelinelistitem.text
        if self.sound:
            self.sound.stop()
        self.sound = SoundLoader.load(the_song_path)
        if self.sound:
            self.sound.play()
        print(the_song_path)

    

MainApp().run()

标签: pythonkivykivymd

解决方案


复制并粘贴这个:我只改变了这部分:

抱歉我迟到了 Tou 必须删除“on_press”:看到这个

这是正确的代码: MDList: id: scroll on_touch_down: app.root.current ='controller'


推荐阅读