mirror of
https://github.com/lvgl/lvgl.git
synced 2025-02-04 07:13:00 +08:00
chore: fix lv_example_img_1()
This commit is contained in:
parent
45aa59a473
commit
9285f44539
@ -4,11 +4,15 @@
|
|||||||
|
|
||||||
void lv_example_img_1(void)
|
void lv_example_img_1(void)
|
||||||
{
|
{
|
||||||
LV_IMG_DECLARE(test_img_cogwheel_rgb565);
|
LV_IMG_DECLARE(img_cogwheel_argb);
|
||||||
lv_obj_t * img1 = lv_img_create(lv_scr_act());
|
lv_obj_t * img1 = lv_img_create(lv_scr_act());
|
||||||
lv_img_set_src(img1, &test_img_cogwheel_rgb565);
|
lv_img_set_src(img1, &img_cogwheel_argb);
|
||||||
lv_obj_align(img1, LV_ALIGN_CENTER, 0, -20);
|
lv_obj_align(img1, LV_ALIGN_CENTER, 0, -20);
|
||||||
lv_img_set_angle(img1, 300);
|
lv_obj_set_size(img1, 200, 200);
|
||||||
|
|
||||||
|
lv_obj_t * img2 = lv_img_create(lv_scr_act());
|
||||||
|
lv_img_set_src(img2, LV_SYMBOL_OK "Accept");
|
||||||
|
lv_obj_align_to(img2, img1, LV_ALIGN_OUT_BOTTOM_MID, 0, 20);
|
||||||
}
|
}
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
Loading…
x
Reference in New Issue
Block a user