45 lines
1.3 KiB
C
45 lines
1.3 KiB
C
#include "../../lv_examples.h"
|
|
#if LV_BUILD_EXAMPLES && LV_USE_XML
|
|
|
|
void lv_example_xml_2(void)
|
|
{
|
|
lv_result_t res;
|
|
res = lv_xml_component_register_from_file("A:lvgl/examples/others/xml/my_h3.xml");
|
|
if(res != LV_RESULT_OK) {
|
|
lv_obj_t * label = lv_label_create(lv_screen_active());
|
|
lv_label_set_text(label, "Couldn't open the XML files.");
|
|
lv_obj_center(label);
|
|
return;
|
|
}
|
|
lv_xml_component_register_from_file("A:lvgl/examples/others/xml/my_card.xml");
|
|
lv_xml_component_register_from_file("A:lvgl/examples/others/xml/my_button.xml");
|
|
lv_xml_component_register_from_file("A:lvgl/examples/others/xml/view.xml");
|
|
|
|
lv_obj_t * obj = lv_xml_create(lv_screen_active(), "view", NULL);
|
|
lv_obj_set_pos(obj, 10, 10);
|
|
|
|
const char * my_button_attrs[] = {
|
|
"x", "10",
|
|
"y", "-10",
|
|
"align", "bottom_left",
|
|
"btn_text", "New button",
|
|
NULL, NULL,
|
|
};
|
|
|
|
lv_xml_component_unregister("my_button");
|
|
|
|
lv_xml_create(lv_screen_active(), "my_button", my_button_attrs);
|
|
|
|
const char * slider_attrs[] = {
|
|
"x", "200",
|
|
"y", "-15",
|
|
"align", "bottom_left",
|
|
"value", "30",
|
|
NULL, NULL,
|
|
};
|
|
|
|
lv_obj_t * slider = lv_xml_create(lv_screen_active(), "lv_slider", slider_attrs);
|
|
lv_obj_set_width(slider, 100);
|
|
}
|
|
#endif
|