我目前正在设计一个Android音乐播放器应用。在播放歌曲时一切正常。现在,我想要的是,当我们单击“播放”按钮时,它会将其图像更改为暂停,并且第一次单击时将播放歌曲。当我们单击它的图像为暂停图像时,歌曲就会暂停。简而言之,当我们单击按钮时,我想更改按钮的on_release
操作和图像。
您不必担心如何播放和暂停。我只是想知道如何在单击按钮时更改按钮的功能和图像。
我当前的程序如下:
from kivy.lang import Builder
from kivymd.uix.list import OneLineListItem
from kivymd.app import MDApp
from kivy.core.audio import SoundLoader
import os
helper_string = """
Screen:
BoxLayout:
orientation: "vertical"
ScrollView:
MDList:
id: scroll
MDRoundImageButton:
id: play_button
source: "F:/playbutton.png"
pos_hint: {"center_x":0.5,"center_y":0.5}
on_release: app.song_player_on_release_play_button()
"""
class MainApp(MDApp):
def build(self):
screen = Builder.load_string(helper_string)
return screen
def on_start(self):
for root, dirs, files in os.walk('C:/'):
for file in files:
if file.endswith('.mp3'):
required_file = file
the_location = os.path.abspath(required_file)
self.root.ids.scroll.add_widget(OneLineListItem(text=required_file, on_release=self.play_song))
# print(required_file)
def play_song(self, onelinelistitem):
SongList = []
# print('play:', onelinelistitem.text)
the_song_path = onelinelistitem.secondary_text
SongList.append(the_song_path)
if len(SongList) == 1:
sound = SoundLoader.load(SongList[0])
if sound:
sound.play()
print(the_song_path)
if len(SongList) > 1:
SoundLoader.load(SongList[0]).stop()
sound = SoundLoader.load(SongList[1])
if sound:
sound.play()
print(the_song_path)
def song_player_on_release_play_button(self):
self.root.ids.play_button.source = "F:/pause button.png"
self.root.ids.play_button.on_release = self.song_player_on_release_pause_button()
def song_player_on_release_pause_button(self):
self.root.ids.play_button.on_release = self.song_player_on_release_play_button()
self.root.ids.play_button.source = "F:/playbutton.png"
MainApp().run()
在上面的代码中,我认为如果我使用self.root.ids.play_button.on_release
,它将改变发布时的功能,但无法正常工作。现在,我坚持下去:如何更改按钮功能及其上的图像?
我是编程新手,我在Python中使用kivy和kivymd来制作此应用。
如果要对此进行测试,请更改图像名称或下载我最初使用的图像:
再次,我希望他们彼此更改on_release
动作,这意味着当我们单击暂停时它会打印暂停,请更改按钮图像以播放。然后,当我们单击该播放时,它将打印播放并将按钮图像更改为暂停,并且此操作将永远持续下去。
答案 0 :(得分:0)
您不需要为此定义两个功能。在一项功能中,您可以更改播放或暂停图像,如下所示。
def song_player_on_release_play_button(self, *args):
if self.root.ids.play_button.source = "F:/playbutton.png":
self.root.ids.play_button.source = "F:/pause button.png"
else:
self.root.ids.play_button.source = "F:/playbutton.png"