如何为盒子布局中的标签设置滚动视图

发布于 2025-01-13 01:26:34 字数 1008 浏览 0 评论 0原文

这是我的代码

     BoxLayout:
        size_hint: 1, 4
        BoxLayout:
            size_hint: .15, 1
        ScrollView:
            id: sc
            scroll_type:["bars"]
            bar_width: 10
            bar_color: 1,0,0
            BoxLayout:
                size_hint:(1, None)
                height:self.minimum_height
                #size_hint: 1, 1
                Label:
                    #height: sc.height
                    #height:self.height
                    size_hint:(1, None)
                    id: nt
                    color: 1,1,1
                    text:root.textn
                    font_size: "20sp"
                    text_size: self.size
                    valign: "top"
                    halign: "left"
        BoxLayout:
            size_hint: .15, 1

,上面的代码我得到这个 在此处输入图像描述

它不显示整个文本,滚动视图不生效 我能做些什么?

here is my code

     BoxLayout:
        size_hint: 1, 4
        BoxLayout:
            size_hint: .15, 1
        ScrollView:
            id: sc
            scroll_type:["bars"]
            bar_width: 10
            bar_color: 1,0,0
            BoxLayout:
                size_hint:(1, None)
                height:self.minimum_height
                #size_hint: 1, 1
                Label:
                    #height: sc.height
                    #height:self.height
                    size_hint:(1, None)
                    id: nt
                    color: 1,1,1
                    text:root.textn
                    font_size: "20sp"
                    text_size: self.size
                    valign: "top"
                    halign: "left"
        BoxLayout:
            size_hint: .15, 1

with the above code i get this enter image description here

it does not show the whole text and the scrollview does not come into effect
what can i do?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

孤星 2025-01-20 01:26:34

这是我认为适合您的 kv 的修改版本:

BoxLayout:
    # size_hint: 1, 4   # this would make the BoxLayout 4 times taller than its parent???
    BoxLayout:
        size_hint: .15, 1
    ScrollView:
        id: sc
        size_hint: 1, 0.5
        scroll_type:["bars"]
        bar_width: 10
        bar_color: 1,0,0
        BoxLayout:
            size_hint:(1, None)
            height:self.minimum_height
            Label:
                size_hint:(1, None)
                height: self.texture_size[1]   # this makes the Label fit to height of text
                id: nt
                color: 1,1,1
                text:app.textn
                font_size: "20sp"
                # text_size: self.size   # not needed
                valign: "top"
                halign: "left"
    BoxLayout:
        size_hint: .15, 1

要点是将 Labelheight 设置为调整为它的文本

Here is a modified version of your kv that I think will work for you:

BoxLayout:
    # size_hint: 1, 4   # this would make the BoxLayout 4 times taller than its parent???
    BoxLayout:
        size_hint: .15, 1
    ScrollView:
        id: sc
        size_hint: 1, 0.5
        scroll_type:["bars"]
        bar_width: 10
        bar_color: 1,0,0
        BoxLayout:
            size_hint:(1, None)
            height:self.minimum_height
            Label:
                size_hint:(1, None)
                height: self.texture_size[1]   # this makes the Label fit to height of text
                id: nt
                color: 1,1,1
                text:app.textn
                font_size: "20sp"
                # text_size: self.size   # not needed
                valign: "top"
                halign: "left"
    BoxLayout:
        size_hint: .15, 1

The main point is setting the height of the Label to adjust to its text.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文