gpt4 book ai didi

python - Kivy 中的 RecycleView 模块

转载 作者:太空宇宙 更新时间:2023-11-03 14:14:24 24 4
gpt4 key购买 nike

新成员,第一篇文章。我会尽量具体、清晰。下面这段代码取自kivy关于RecycleView module 的网页。我想使用这段代码,但是,我不想使用 KV lang 和 Builder,而是用纯 Python 3 编写代码。我尝试将 RecycleBoxLayout 类添加为小部件完全失败了,因为结果只是一个黑色的窗口。只有添加“viewclass”才有效。显然,这里有一些我不明白或遗漏的东西。我还附上了我重写代码的尝试。

任何帮助将不胜感激。提前谢谢您。

原始代码:

from kivy.app import App
from kivy.lang import Builder
from kivy.uix.recycleview import RecycleView

Builder.load_string('''
<RV>:
viewclass: 'Label'
RecycleBoxLayout:
default_size: None, dp(56)
default_size_hint: 1, None
size_hint_y: None
height: self.minimum_height
orientation: 'vertical'
''')

class RV(RecycleView):
def __init__(self, **kwargs):
super(RV, self).__init__(**kwargs)
self.data = [{'text': str(x)} for x in range(100)]

class TestApp(App):
def build(self):
return RV()


if __name__ == '__main__':
TestApp().run()

我的失败尝试:

from kivy.app import App
from kivy.lang import Builder
from kivy.uix.recycleview import RecycleView
from kivy.uix.label import Label
from kivy.uix.recycleboxlayout import RecycleBoxLayout

class RV(RecycleView):
def __init__(self, **kwargs):
super(RV, self).__init__(**kwargs)
self.data = [{'text': str(x)} for x in range(100)]
self.viewclass = Label
layout = RecycleBoxLayout()
self.add_widget(layout)

class TestApp(App):
def build(self):
return RV()


if __name__ == '__main__':
TestApp().run()

最佳答案

我一直在寻找同样的东西,我不喜欢 kv lang,并且尚未确信它比在代码中完成所有操作更好。

样本来自https://kivy.org/docs/api-kivy.uix.recycleview.html#kivy.uix.recycleview.RecycleView将按如下方式创建。

from kivy.app import App
from kivy.graphics import Color, Rectangle
from kivy.uix.recycleview import RecycleView
from kivy.uix.recycleview.views import RecycleDataViewBehavior
from kivy.uix.label import Label
from kivy.properties import BooleanProperty
from kivy.uix.recycleboxlayout import RecycleBoxLayout
from kivy.uix.behaviors import FocusBehavior
from kivy.uix.recycleview.layout import LayoutSelectionBehavior

class SelectableRecycleBoxLayout(FocusBehavior, LayoutSelectionBehavior,
RecycleBoxLayout):
''' Adds selection and focus behaviour to the view. '''
def __init__(self, **kw):
super().__init__(**kw, default_size=(0, 28), default_size_hint=(1, None), size_hint_y=None,
touch_multiselect=True, multiselect=True, orientation='vertical')

self.bind(minimum_height=self._min)

def _min(self, inst, val):
self.height = val

class SelectableLabel(RecycleDataViewBehavior, Label):
''' Add selection support to the Label '''
index = None
selected = BooleanProperty(False)
selectable = BooleanProperty(True)

def __init__(self, **kw):
super().__init__(**kw)
self.canvas.before.clear()
with self.canvas.before:
if self.selected:
Color(.0, 0.9, .1, .3)
else:
Color(0, 0, 0, 1)
self.rect = Rectangle(size=self.size, pos=self.pos)
self.bind(size=self._update_rect, pos=self._update_rect)

def _update_rect(self, inst, value):
self.rect.pos = inst.pos
self.rect.size = inst.size

def refresh_view_attrs(self, rv, index, data):
''' Catch and handle the view changes '''
self.index = index
return super().refresh_view_attrs(rv, index, data)

def on_touch_down(self, touch):
''' Add selection on touch down '''
if super(SelectableLabel, self).on_touch_down(touch):
return True
if self.collide_point(*touch.pos) and self.selectable:
return self.parent.select_with_touch(self.index, touch)

def apply_selection(self, rv, index, is_selected):
''' Respond to the selection of items in the view. '''
self.selected = is_selected
if is_selected:
print("selection changed to {0}".format(rv.data[index]))
else:
print("selection removed for {0}".format(rv.data[index]))
self.canvas.before.clear()
with self.canvas.before:
if self.selected:
Color(.0, 0.9, .1, .3)
else:
Color(0, 0, 0, 1)
self.rect = Rectangle(size=self.size, pos=self.pos)


class RV(RecycleView):
def __init__(self, **kwargs):
super(RV, self).__init__(**kwargs)
self.add_widget(SelectableRecycleBoxLayout())
self.viewclass = 'SelectableLabel'
self.data = [{'text': str(x)} for x in range(100)]


class TestApp(App):
def build(self):
return RV()

if __name__ == '__main__':
TestApp().run()

KV 类中的顺序很重要。不确定需要在哪里,但在添加小部件后需要修改 self.data。

关于python - Kivy 中的 RecycleView 模块,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48287204/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com