|
|
/* Title */
lv_obj_t *title = lv_label_create(page); // 创建标题标签
lv_label_set_text(title, "迷茫的大笨象12aA!"); // 设置标题文本
lv_obj_set_style_text_color(title, lv_color_white(), 0); // 设置文本颜色
lv_obj_set_style_text_font(title, &lv_Font_SemiBold_24, 0); // 设置字体
lv_obj_align(title, LV_ALIGN_TOP_MID, 0, 10); // 对齐位置
内部字体可以正常显示的
|
|