简体   繁体   中英

Displaying an image over multiple buttons - kivy

I want to display a single image over multiple different buttons (as shown in the picture: https://i.stack.imgur.com/BQ99R.jpg )

When I try to do so, the image gets covered by the buttons and hidden in the background.

What I want to know is that is this even possible in kivy? If yes, where do I define the image, in the label or button?

This code:

from kivy.app import App
from kivy.uix.floatlayout import FloatLayout
from kivy.lang import Builder


Builder.load_string("""
<Base>:
    GridLayout:
        cols: 2
        size_hint: 1, 1
        Button:
            text: "Button 1"
            on_press: print(self.text)
        Button:
            text: "Button 2"
            on_press: print(self.text)
        Button:
            text: "Button 3"
            on_press: print(self.text)
        Button:
            text: "Button 4"
            on_press: print(self.text)
    Image:
        source: 'wolf.png'
""")


class Base(FloatLayout):
    def __init__(self, **kwargs):
        super(Base, self).__init__(**kwargs)


class SampleApp(App):
    def build(self):
        return Base()


if __name__ == "__main__":
    SampleApp().run()

produces this: 在此处输入图片说明

Of course you have to provide an image yourself ;o)

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM