<small id='2RMI5'></small><noframes id='2RMI5'>

    <tfoot id='2RMI5'></tfoot>

      <bdo id='2RMI5'></bdo><ul id='2RMI5'></ul>
  1. <i id='2RMI5'><tr id='2RMI5'><dt id='2RMI5'><q id='2RMI5'><span id='2RMI5'><b id='2RMI5'><form id='2RMI5'><ins id='2RMI5'></ins><ul id='2RMI5'></ul><sub id='2RMI5'></sub></form><legend id='2RMI5'></legend><bdo id='2RMI5'><pre id='2RMI5'><center id='2RMI5'></center></pre></bdo></b><th id='2RMI5'></th></span></q></dt></tr></i><div id='2RMI5'><tfoot id='2RMI5'></tfoot><dl id='2RMI5'><fieldset id='2RMI5'></fieldset></dl></div>
  2. <legend id='2RMI5'><style id='2RMI5'><dir id='2RMI5'><q id='2RMI5'></q></dir></style></legend>

      Kivy Filechooser 在滚动屏幕上重叠文本

      时间:2023-10-08

          <tbody id='kesU0'></tbody>

        <small id='kesU0'></small><noframes id='kesU0'>

        <legend id='kesU0'><style id='kesU0'><dir id='kesU0'><q id='kesU0'></q></dir></style></legend>

        <tfoot id='kesU0'></tfoot>
          • <i id='kesU0'><tr id='kesU0'><dt id='kesU0'><q id='kesU0'><span id='kesU0'><b id='kesU0'><form id='kesU0'><ins id='kesU0'></ins><ul id='kesU0'></ul><sub id='kesU0'></sub></form><legend id='kesU0'></legend><bdo id='kesU0'><pre id='kesU0'><center id='kesU0'></center></pre></bdo></b><th id='kesU0'></th></span></q></dt></tr></i><div id='kesU0'><tfoot id='kesU0'></tfoot><dl id='kesU0'><fieldset id='kesU0'></fieldset></dl></div>

                <bdo id='kesU0'></bdo><ul id='kesU0'></ul>
                本文介绍了Kivy Filechooser 在滚动屏幕上重叠文本的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

                问题描述

                • Python:3.7
                • 操作系统:Windows 10
                • 基维:1.11.1
                • Kivy安装方式:pip

                FileChooser 在滚动文件列表时会重叠文本.看起来第一个内容保持不变,滚动数据的内容显示在第一个内容的顶部.

                FileChooser overlaps text on scrolling through files list. Looks like the 1st content stays and on scroll the content of scrolled data is getting displayed on top of 1st content.

                
                from kivy.app import App
                from kivy.uix.floatlayout import FloatLayout
                from kivy.uix.screenmanager import Screen, ScreenManager
                from kivy.uix.popup import Popup
                from kivy.properties import ObjectProperty, BoundedNumericProperty, StringProperty
                from kivy.lang import Builder
                
                class FirstWindow(Screen):
                    def show_load(self):
                        content = LoadDialog(load=self.load, cancel=self.dismiss_popup)
                        self._popup = Popup(title="Load file", content=content,
                                            size_hint=(0.9, 0.9))
                        self._popup.open()
                
                    def dismiss_popup(self):
                        self._popup.dismiss()
                
                    def cancel(self):
                        pass
                
                    def load(path, selection):
                        print(path, selection)
                
                class LoadDialog(FloatLayout):
                    load = ObjectProperty(None)
                    cancel = ObjectProperty(None)
                
                class EditorApp(App):
                    def build(self):
                        kv = Builder.load_file("editor.kv")
                        self.screen_manager = ScreenManager()
                
                        screen = FirstWindow(name="first")
                        self.screen_manager.add_widget(screen)
                        self.screen_manager.current = "first"
                
                        return self.screen_manager
                
                if __name__ == "__main__":
                    editor_app = EditorApp()
                    editor_app.run()
                
                

                KV 文件

                <FirstWindow>:
                  BoxLayout:
                    orientation: "vertical"
                    Button:
                      text: "Select Folder"
                      on_release: root.show_load()
                
                <LoadDialog>:
                  BoxLayout:
                    size: root.size
                    pos: root.pos
                    orientation: "vertical"
                    FileChooserListView:
                      id: filechooser
                
                    BoxLayout:
                      size_hint_y: None
                      height: 30
                      Button:
                        text: "Cancel"
                        on_release: root.cancel()
                
                      Button:
                        text: "Load"
                        on_release: root.load(filechooser.path, filechooser.selection)
                

                截图

                推荐答案

                对于面临同样问题的人,我通过将 FileChooser 替换为 Plyer 的原生文件选择器来解决.Github 上的讨论可以在这里找到

                For people who are facing the same issue, I resolved by replacing FileChooser with Plyer's native filechooser. Disussion on Github can be found here

                这篇关于Kivy Filechooser 在滚动屏幕上重叠文本的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持html5模板网!

                上一篇:如何使用按钮行为在kivy中制作圆形按钮? 下一篇:在 Kivy 中加载应用程序时元素的大小不会更新

                相关文章

                最新文章

              • <tfoot id='TWJ7n'></tfoot>

                <small id='TWJ7n'></small><noframes id='TWJ7n'>

                  1. <legend id='TWJ7n'><style id='TWJ7n'><dir id='TWJ7n'><q id='TWJ7n'></q></dir></style></legend>

                    <i id='TWJ7n'><tr id='TWJ7n'><dt id='TWJ7n'><q id='TWJ7n'><span id='TWJ7n'><b id='TWJ7n'><form id='TWJ7n'><ins id='TWJ7n'></ins><ul id='TWJ7n'></ul><sub id='TWJ7n'></sub></form><legend id='TWJ7n'></legend><bdo id='TWJ7n'><pre id='TWJ7n'><center id='TWJ7n'></center></pre></bdo></b><th id='TWJ7n'></th></span></q></dt></tr></i><div id='TWJ7n'><tfoot id='TWJ7n'></tfoot><dl id='TWJ7n'><fieldset id='TWJ7n'></fieldset></dl></div>
                      <bdo id='TWJ7n'></bdo><ul id='TWJ7n'></ul>