Tagged Questions
1
vote
1answer
396 views
Kivy - editing label when button clicked
I wish button1 to edit Label 'etykietka' when clicked, but i don't know how. Have you got some ideas?
class Zastepstwa (App):
def build(self):
lista=WebOps().getList()
layout = ...
0
votes
1answer
161 views
Kivy: Sound starts to play, but is 'unstoppable' on Android, but on Windows it works
I got a series of ToggleButtons in kivy, with each loaded a different soundfile.
When i try my Code in Windows, everything works as expected, but on Android via the Kivy Launcher, the sound doesn't ...
0
votes
1answer
447 views
How can I set the position (x,y coordinates) of a grid layout in kivy?
I've noticed that when you make buttons using the grid layout in Kivy they are created at (0,0) and move over a number of spaces depending on the length and width of previous buttons.
However, I'd ...