为了账号安全,请及时绑定邮箱和手机立即绑定

为什么MDCard无法在KivyMD中添加on_touch_down?

为什么MDCard无法在KivyMD中添加on_touch_down?

莫回无 2023-08-15 18:35:53
我已经实施了以下。底部有两个按钮。单击第一个按钮时,它会从主屏幕转到第一个屏幕。在第一个屏幕上,单击右上角按钮将创建 10 张卡片。但是当尝试添加on_touch_down时它会崩溃。我添加了toast print一些功能,但没有任何效果。那么这个问题的解决方案是什么?谢谢main.py 我已经评论过on_touch_down = toast('clicked')。没有它它也可以工作,但是当取消注释时,应用程序就会崩溃。如何实施?这样该卡就可以点击了。build_string.pyhelper_string = """<MenuButton@MDIconButton>:    icon: "menu"    theme_text_color: "Custom"    text_color: 1,0,0,1    halign: 'bottom'      on_press: app.show_main_grid_bottom_sheet()<TButton@MDIconButton>:    icon: "menu"    theme_text_color: "Custom"    text_color: 1,0,0,1    halign: 'center'  <TitleText@MDLabel>    pos_hint: {"center_y": .95}    halign: "center"    theme_text_color: "Custom"    text_color: 0, 0, 1, 1    font_style: "Subtitle1"ScreenManager:    id: screen_manager    MainScreen:    FirstScreen:        id: first_screen_id    SecondScreen:<MainScreen>:    name: 'main_screen'    BoxLayout:        orientation: "vertical"        spacing: "5dp"        MDToolbar:            id: toolbar            pos_hint: {'bottom': 1}            #right_action_items: [["dots-vertical", lambda x: app.show_main_grid_bottom_sheet()]]            left_action_items: [["menu", lambda x: app.show_main_grid_bottom_sheet()]]   <FirstScreen>:    name: 'first_screen'    BoxLayout:        id: first_screen_box        orientation: "vertical"        spacing: "5dp"        MDToolbar:            id: toolbar            title: "First Screen"            elevation: 5            pos_hint: {'top': 1}            right_action_items: [["refresh", lambda x: app.make_card()]]        ScrollView:                            MDBoxLayout:                id: first_screen_box_layout                orientation: 'vertical'                adaptive_height: True                padding: dp(15)                spacing: dp(5) 
查看完整描述

1 回答

?
慕尼黑的夜晚无繁华

TA贡献1864条经验 获得超6个赞

是on_touch_down您可以绑定的事件,它不是MDCard您可以设置的属性。所以你可以像这样进行绑定:


def make_card(self):

    for i in range(10):

        card = MDCard(

            orientation="vertical",

            padding="8dp",

            ripple_behavior=True,

            size_hint=[1, None],

            #on_touch_down = toast('clicked')

        )

        card.bind(on_touch_down=self.clicked)  # set binding


        label_link = MDLabel(text="Card" + str(i))

        label_link.font_style = "Caption"


        label_header = MDLabel(text="Title" + str(i))

        label_header.size_hint = [1, 1]


        card.add_widget(label_link)

        card.add_widget(label_header)


        self.sm.ids.first_screen_id.ids.first_screen_box_layout.add_widget(card)


# method called by binding

def clicked(self, card, touch):

    if card.collide_point(*touch.pos):

        print('clicked on', card.children[0].text)


查看完整回答
反对 回复 2023-08-15
  • 1 回答
  • 0 关注
  • 95 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信