1. <small id='22qIP'></small><noframes id='22qIP'>

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

          <bdo id='22qIP'></bdo><ul id='22qIP'></ul>
        <legend id='22qIP'><style id='22qIP'><dir id='22qIP'><q id='22qIP'></q></dir></style></legend>
        <tfoot id='22qIP'></tfoot>

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

        Kivy Filechooser overlapping text on scroll with screens(Kivy Filechooser 在滚动屏幕上重叠文本)
          <i id='3z7Lc'><tr id='3z7Lc'><dt id='3z7Lc'><q id='3z7Lc'><span id='3z7Lc'><b id='3z7Lc'><form id='3z7Lc'><ins id='3z7Lc'></ins><ul id='3z7Lc'></ul><sub id='3z7Lc'></sub></form><legend id='3z7Lc'></legend><bdo id='3z7Lc'><pre id='3z7Lc'><center id='3z7Lc'></center></pre></bdo></b><th id='3z7Lc'></th></span></q></dt></tr></i><div id='3z7Lc'><tfoot id='3z7Lc'></tfoot><dl id='3z7Lc'><fieldset id='3z7Lc'></fieldset></dl></div>

          <legend id='3z7Lc'><style id='3z7Lc'><dir id='3z7Lc'><q id='3z7Lc'></q></dir></style></legend>
          • <tfoot id='3z7Lc'></tfoot>
            • <bdo id='3z7Lc'></bdo><ul id='3z7Lc'></ul>
                • <small id='3z7Lc'></small><noframes id='3z7Lc'>

                    <tbody id='3z7Lc'></tbody>

                  本文介绍了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 在滚动屏幕上重叠文本的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                  本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

                  相关文档推荐

                  Kivy 1.9.0 Windows package KeyError: #39;rthooks#39;(Kivy 1.9.0 Windows 包 KeyError: rthooks)
                  Python Kivy: how to call a function on button click?(Python Kivy:如何在按钮单击时调用函数?)
                  How to disable a widget in Kivy?(如何禁用 Kivy 中的小部件?)
                  Centering an object in Kivy(在 Kivy 中将对象居中)
                  How to downgrade to Python 3.4 from 3.5(如何从 Python 3.5 降级到 Python 3.4)
                  Change button or label text color in kivy(在kivy中更改按钮或标签文本颜色)
                • <i id='uncXc'><tr id='uncXc'><dt id='uncXc'><q id='uncXc'><span id='uncXc'><b id='uncXc'><form id='uncXc'><ins id='uncXc'></ins><ul id='uncXc'></ul><sub id='uncXc'></sub></form><legend id='uncXc'></legend><bdo id='uncXc'><pre id='uncXc'><center id='uncXc'></center></pre></bdo></b><th id='uncXc'></th></span></q></dt></tr></i><div id='uncXc'><tfoot id='uncXc'></tfoot><dl id='uncXc'><fieldset id='uncXc'></fieldset></dl></div>

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

                    <tbody id='uncXc'></tbody>

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

                            <bdo id='uncXc'></bdo><ul id='uncXc'></ul>

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