1
0
mirror of https://github.com/lvgl/lvgl.git synced 2025-01-14 06:42:58 +08:00
lvgl/examples/widgets/label/lv_example_label_1.py

20 lines
821 B
Python
Raw Normal View History

#
# Show line wrap, re-color, line align and text scrolling.
#
2021-02-08 09:53:03 +01:00
label1 = lv.label(lv.scr_act())
label1.set_long_mode(lv.label.LONG.WRAP); # Break the long lines*/
2021-02-08 09:53:03 +01:00
label1.set_recolor(True) # Enable re-coloring by commands in the text
label1.set_text("#0000ff Re-color# #ff00ff words# #ff0000 of a# label, align the lines to the center"
"and wrap long text automatically.")
label1.set_width(150) # Set smaller width to make the lines wrap
label1.set_style_text_align(lv.ALIGN.CENTER, 0)
label1.align(lv.ALIGN.CENTER, 0, -40)
2021-02-08 09:53:03 +01:00
label2 = lv.label(lv.scr_act())
label2.set_long_mode(lv.label.LONG.SCROLL_CIRCULAR) # Circular scroll
2021-02-08 09:53:03 +01:00
label2.set_width(150)
label2.set_text("It is a circularly scrolling text. ")
label2.align(lv.ALIGN.CENTER, 0, 40)