嵌入式系统应用
目录
新能源汽车仪表盘行车电脑数据显示
电脑数据显示UI
UI开发
开发
时间日期显示01
档位切换显示02
01
时间日期显示
车载时钟显示
时间日期显示
档位切换显示
汽车作为人们日常生活中重要的交通工具,对于时间的显示是必不可少的。
汽车仪表盘车载时钟显示
2021/10/30
//日期显示
date_lable=lv_label_create(parent,NULL);
lv_label_set_long_mode(date_lable,LV_LABEL_LONG_BREAK);//长文本模式
lv_label_set_recolor(date_lable,true);//使能文本颜切换
lv_label_set_align(date_lable,LV_LABEL_ALIGN_CENTER);//文本居中
lv_obj_set_width(date_lable,400);//文字显示设置宽度lv_obj_align(date_lable,parent,LV_ALIGN_IN_TOP_LEFT,0,25);//设置位置
时间日期显示档位切换显示
发布评论