how to display image name under image
Hi,
i was added image using elm_image_add() function, Now i need display image name under image but it not displaying image name it was displaying image only, below i am sharing my code please find error in that code,
Evas_Object * img = elm_image_add(ad->layout);
snprintf(buf, sizeof(buf), "%s/Tizen.png", ICON_DIR);
elm_image_file_set(img, buf, NULL);
elm_image_aspect_fixed_set(img, EINA_TRUE);
evas_object_size_hint_min_set(img, ELM_SCALE_SIZE(60), ELM_SCALE_SIZE(60));
elm_object_part_content_set(ad->layout, "swallow_tizen", img);
elm_object_text_set(img,"Tizen");
evas_object_show(img);