Design Introduction “Air” Styles Mobile Design Principles Styles UX Overview Design Patterns UI Components for Tizen App Design 2.3 TV Design Principles Styles UX Overview Patterns UI Components Wearable Development Tizen Studio Overview Download Tizen Extensions for Visual Studio Family IoT extension SDK Docs Blog Blog Announcing the Tizen Studio 3.7 Release Announcing the Tizen Studio 3.1 Release Community Forums General Support Tizen .NET Web Application Development Native Application Development SDK & IDE Design Introduction “Air” Styles Mobile Design Principles Styles UX Overview Design Patterns UI Components for Tizen App Design 2.3 TV Design Principles Styles UX Overview Patterns UI Components Wearable Development Tizen Studio Overview Download Tizen Extensions for Visual Studio Family IoT extension SDK Docs Blog Blog Announcing the Tizen Studio 3.7 Release Announcing the Tizen Studio 3.1 Release Community Forums General Support Tizen .NET Web Application Development Native Application Development SDK & IDE
About API for animation
Hello, dear.
Recently, I’m making animation when app was launched.
I want to stop the animation after rotation, once.
But, this animation by my code is working continuosly.
I wonder if I change the property of animation’s repeatable such as once or repeatedly,
below is mine.
If you know how to get it, please let me know.
Thank you for your advice.
Bye.
Evas_Object *loadingImg;
char buf[PATH_MAX];
loadingImg = elm_image_add(grid);
app_get_resource(“images/loading.gif”, buf, (int)PATH_MAX);
elm_image_file_set(loadingImg, buf, NULL);
evas_object_size_hint_min_set(loadingImg, 64, 64);
elm_image_resizable_set(loadingImg, EINA_TRUE, EINA_TRUE);
if (elm_image_animated_available_get(loadingImg))
{
dlog_print(DLOG_INFO, TAG, “elm_image_animated_available_get )”);
elm_image_animated_set(loadingImg, true);
elm_image_animated_play_set(loadingImg, true);
}
evas_object_show(loadingImg);
BY
16 Apr 2025
Tizen Studio
BY
04 Nov 2024
Tizen Studio
BY
02 Apr 2024
Tizen Studio