8

无论是通过python还是kivy语言,在kivy中设置全局字体大小(即按钮和标签)的首选方式是什么?

根据窗口大小动态更改全局字体大小设置的好方法是什么?

4

3 回答 3

15
<Label>:
    font_size: dp(20)
    font_name: 'path/to/funcy/font.ttf'

将为使用 Label 作为其基础的任何小部件全局设置字体名称和字体大小(TextInput 和其他一些小部件不这样做)。

于 2013-09-28T11:39:36.000 回答
3

使用模板创建您的自定义标签:

from kivy.app import App
from kivy.lang import Builder
from kivy.uix.widget import Widget 
from kivy.properties import ObjectProperty, NumericProperty

kv = '''
[MyLabel@Label]:
    text: ctx.text if hasattr(ctx, 'text') else ''
    font_size: 24
    markup: True

<MyWidget>:
    id: f_wid
    BoxLayout:
        size: f_wid.size
        orientation: 'vertical'
        MyLabel:
            text: "Hello world 1"
        MyLabel:
            text: "Hello world 2"
        MyLabel:
            text: "Hello world 3"
        MyLabel:
            text: "Hello world 4"   
        MyLabel:
            text: "Hello world 1"
        MyLabel:
            text: "Hello world 2"
        MyLabel:
            text: "Hello world 3"
        MyLabel:
            text: "Hello world 4"   
'''
Builder.load_string(kv)

import kivy
kivy.require('1.7.1') # replace with your current kivy version !

from kivy.app import App
from kivy.uix.widget import Widget

class MyWidget(Widget):
    pass

class MyApp(App):
    def build(self):
        return MyWidget()

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

要使字体大小取决于屏幕大小,而不是使用固定值来计算它self.heigh

[MyLabel@Label]:
    text: ctx.text if hasattr(ctx, 'text') else ''
    font_size: self.height/2
    markup: True

更新

另一种方法是使用 #:set 语法设置变量:

kv = '''
#:set default_font_size "36sp"
<MyWidget>:
    id: f_wid
    BoxLayout:
        size: f_wid.size
        orientation: 'vertical'
        Label:
            text: "Hello world 1"
            font_size: default_font_size
        Label:
            text: "Hello world 2"
            font_size: default_font_size
        Label:
            text: "Hello world 3"
            font_size: default_font_size
        Label:
            text: "Hello world 4"   
            font_size: default_font_size
        Label:
            text: "Hello world 1"
            font_size: default_font_size
        Label:
            text: "Hello world 2"
            font_size: default_font_size
        Label:
            text: "Hello world 3"
            font_size: default_font_size
        Label:
            text: "Hello world 4"   
            font_size: default_font_size
'''
Builder.load_string(kv)
于 2013-09-27T17:35:22.973 回答
0

我知道这个问题很老,但您确实问过“与窗口大小成比例地动态更改全局字体大小设置”

对于类似的问题,我创建了AutoSizedLabel

class TestApp(App):
    def build(self):
        return AutoSizedLabel(text="crazy stuff", ratio=0.5)

它可以通过以下方式安装 pip:

pip install kivyoav
于 2016-09-29T09:00:03.643 回答