Hello. I am zm soft, registered as a developer last year (end of ’23) and started releasing apps. I am planning to release an app for developers as well, so please check it out if you like.
Do you use animation in your apps? Just a little animation can make an app easier to understand and look better, right? So, today, I would like to talk about how to display animation in android apps.
LottieAnimation
I use LottieAnimatiin, an animation display library. I use it because it is relatively easy to display lightweight animations.
What kind of animations can be displayed / Types of Animations
The first good thing about this library is the wide variety of animations available for free. For example, the following animations are available.
These animations are available on the official LottieFiles website. There are also many paid animations, but you can use just the ones that come up in the free search. Basically, I don’t have the skills or energy to create animations from scratch, so when I want something to move, I first think about what I can use from this site. For example, the following animation can be used to show the user the common click points on the first display. I actually used this animation on the right to guide the user through the process.
The point is ease of use.
It is also fairly simple to implement. For example, if all you need to do is display an animation in a fixed layout, simply define it in the following way and it will work. It is nice to be able to work without having to implement logic.
Easy Implementation of Lottie
The implementation of Lottie is very simple. Simply embed the animation in a specific layout and it works without any additional logic.
Example implementation:
<com.airbnb.lottie.LottieAnimationView
android:id="@+id/lottie_id"
app:lottie_rawRes="@raw/your_lottie_animation"/>
Basic Lottie Usage
Follow the steps below to use Lottie.
- Incorporating the library (modifying build.gradle)
- Acquisition and placement of animation files
- Setting up the layout files
- Customizing animations
Specific implementation examples and code
Below I provide specific implementation examples for using Lottie. This includes how to import libraries, place animation files, set up layout files, and customize animations.
Include in build.gradle/Include libraries:
First, import libraries to make lottie usable.
If there are no problems with the combination of libraries, use the latest environment.
dependencies {
implementation 'com.airbnb.android:lottie:3.4.0'
}
Placement of animation files:.
Download the animation file (.json) of your choice from the official LottieFiles website and place it in the res/raw folder of your application. Find the animation you want to use, save it to your workspace, and then click the download button. The download is free, but user registration is required. Place the animation in the raw folder. If you do not have a folder, please create one. The file name should be changed arbitrarily according to the android naming conventions (if you do not follow the conventions, you can change the file name). (If you do not follow the rules, an error message will be displayed as shown below.)
Layout file configuration:.
Add a LottieAnimationView to the XML layout so that it can reference the downloaded animation file.
Customize Animation:.
Customize the animation behavior as needed. In the animation settings, you can do the following
- Loop playback
- Specify the number of loop times
- Specify playback speed (including reverse playback)
If you add dynamic processing, you can play/stop at any time you want and even change the playback speed.
First, let’s look at how to specify static. Each of the following specifications will change the animation behavior.
<com.airbnb.lottie.LottieAnimationView
android:id="@+id/lottie_id"
android:scaleType="centerCrop"
app:lottie_autoPlay="true"
app:lottie_loop="true"
app:lottie_speed="0.15"
app:lottie_rawRes="@raw/your_lottie_animation"/>
In this example, the file your_lottie_animation.json is played automatically and repeatedly at 0.15x playback speed.
Next is the dynamic process.
lottieAnimationView.playAnimation()
Playback can be performed using the above process. In addition to playback, you can also change settings to change speed, such as stop. You can also set a listener as shown below to detect the end of playback and process it.
lottieAnimationView.addAnimatorListener(object : Animator.AnimatorListener {
override fun onAnimationStart(animation: Animator) {
// Processing at the start of animation
}
override fun onAnimationEnd(animation: Animator) {
// Processing at the end of animation
}
override fun onAnimationCancel(animation: Animator) {
// Processing when animation canceled
}
override fun onAnimationRepeat(animation: Animator) {
// Processing when animation repeated
}
})
Precautions and Troubleshooting
Lottie is very useful, but there are a few caveats. In particular, repositioning of objects does not always seem to work as expected. I will also discuss stack overflow issues related to processing at the end of an animation and behavior after onPause.
Troubleshooting example 1:
I had an implementation problem that caused a stack overflow in the way the end-of-animation process was handled. Specifically, there was a problem with the way the animation was played in reverse when it reached the end, and the way the playback and reverse playback were repeated. The playAnimation() call was restarted by changing the direction of playback at the end of playback, which caused the stack to clog up and the application to crash each time it played, resulting in rejection of updates from the PlayStore. We solved the problem by posting to the main thread and reloading the queue as follows.
lottieAnimationView.addAnimatorListener(object : Animator.AnimatorListener {
override fun onAnimationStart(animation: Animator) {
// Processing at the start of animation
}
override fun onAnimationEnd(animation: Animator) {
// Processing at the end of animation
lottieAnimationView.speed = lottieAnimationView.speed*(-1) // Reverse speed for reverse playback
lottieAnimationView.post {
// POST because of stack overflow due to recurrence call if called directly.
if(isAttachedToWindow) {
lottieAnimationView.playAnimation()
}
}
}
override fun onAnimationCancel(animation: Animator) {
// Processing when animation canceled
}
override fun onAnimationRepeat(animation: Animator) {
// Processing when animation repeated
}
})
Troubleshooting example 2:
Another thing to be careful about is the processing after onPause(). You should stop animation in the background to avoid unwanted behavior.
override fun onResume(owner: LifecycleOwner) {
super.onResume(owner)
// start
lottieAnimationView.playAnimation()
}
override fun onPause(owner: LifecycleOwner) {
lottieAnimationView.cancelAnimation()
super.onPause(owner)
}
However, this was not sufficient when processing at the end of an animation, for example. It is necessary to be aware of the behavior when the background animation is turned almost simultaneously with the end of the animation. Even if playback is stopped to prevent animation in the background, depending on the timing, onAnimationEnd or other actions may be performed after the animation goes to the background. Therefore, touching the UI without checking for this can lead to exceptions or application crashes. Therefore, it was necessary to check if the parent view had not been detached and reprocess it, as shown in the following section of the aforementioned code.
if(isAttachedToWindow) {
binding.lottieBackground.playAnimation()
}
Finally.
Lottie is a powerful tool for improving your app’s UI. It has a wide variety of animations available for free and is simple to implement. If you understand the caveats and address them appropriately, you can reap great benefits in app development. There are some caveats, but overall it is a great library that is very easy to use and has many resources available for free. It will definitely help improve the look and feel of your apps, so please give it a try.
Thanks for your comment. This will encourage me to write a blog.
Thanks for sharing the information. keep sharing
Наиболее трендовые новинки мировых подиумов.
Абсолютно все эвенты всемирных подуимов.
Модные дома, бренды, haute couture.
Самое лучшее место для трендовых людей.
https://modavgorode.ru
Наиболее свежие новинки подиума.
Абсолютно все новости всемирных подуимов.
Модные дома, бренды, haute couture.
Интересное место для модных людей.
https://myfashionacademy.ru/
I don’t think the title of your article matches the content lol. Just kidding, mainly because I had some doubts after reading the article.
Очень важные новости моды.
Важные эвенты мировых подуимов.
Модные дома, бренды, haute couture.
Самое приятное место для трендовых хайпбистов.
https://modaizkomoda.ru
Несомненно стильные события подиума.
Абсолютно все эвенты самых влиятельных подуимов.
Модные дома, торговые марки, высокая мода.
Самое приятное место для трендовых хайпбистов.
https://metamoda.ru/moda/599-doja-cat-vyzvala-bezumie-v-tope-i-yubke-iz-pishchevoy-plenki-s-rezhisserom-vetements-guram-gvasalia/
Очень трендовые новости моды.
Актуальные события известнейших подуимов.
Модные дома, лейблы, haute couture.
Новое место для модных хайпбистов.
https://fashionvipclub.ru/news/2024-06-19-gruzin-kotoryy-perevernul-mirovuyu-modu-demna-gvasaliya/
Очень трендовые новинки индустрии.
Исчерпывающие мероприятия всемирных подуимов.
Модные дома, бренды, высокая мода.
Самое приятное место для трендовых людей.
https://hypebeasts.ru/
Очень стильные новинки мировых подиумов.
Важные эвенты мировых подуимов.
Модные дома, лейблы, гедонизм.
Интересное место для трендовых людей.
https://luxe-moda.ru/chic/162-loro-piana-lyubimyy-brend-politikov-i-biznesmenov/
Наиболее свежие новинки подиума.
Абсолютно все новости лучших подуимов.
Модные дома, торговые марки, высокая мода.
Самое лучшее место для трендовых людей.
https://balmain1.ru/balmain/381-kak-otlichit-originalnyy-balmain-ot-poddelki/
Your article helped me a lot, is there any more related content? Thanks!
Can you be more specific about the content of your article? After reading it, I still have some doubts. Hope you can help me.
Полностью свежие события индустрии.
Актуальные события самых влиятельных подуимов.
Модные дома, торговые марки, haute couture.
Свежее место для трендовых хайпбистов.
https://qrmoda.ru/fashion/361-manzoni-24-italyanskiy-mehovoy-shik/
Your article helped me a lot, is there any more related content? Thanks!
Самые свежие события моды.
Важные новости известнейших подуимов.
Модные дома, бренды, гедонизм.
Самое лучшее место для стильныех людей.
https://qrmoda.ru/fashion/361-manzoni-24-italyanskiy-mehovoy-shik/
Полностью важные новости подиума.
Все события мировых подуимов.
Модные дома, бренды, гедонизм.
Лучшее место для трендовых людей.
https://stylecross.ru/read/2024-06-19-lacoste-kachestvennyy-premium-po-tsene-mass-marketa/
Точно актуальные новинки модного мира.
Важные мероприятия лучших подуимов.
Модные дома, лейблы, гедонизм.
Приятное место для модных хайпбистов.
https://world.lepodium.net/
Очень актуальные события подиума.
Актуальные новости всемирных подуимов.
Модные дома, торговые марки, гедонизм.
Интересное место для трендовых хайпбистов.
https://rftimes.ru/news/2024-08-14-7-samyh-kultovyh-veshchey-ot-balenciaga
Очень стильные новости модного мира.
Важные новости всемирных подуимов.
Модные дома, торговые марки, haute couture.
Новое место для модных людей.
https://hypebeasts.ru/stuff/2024-08-18-demna-gvasaliya-ikona-sovremennoy-mody/
I don’t think the title of your article matches the content lol. Just kidding, mainly because I had some doubts after reading the article.
Несомненно актуальные события модного мира.
Все мероприятия мировых подуимов.
Модные дома, торговые марки, высокая мода.
Новое место для стильныех людей.
https://irkutsk.rftimes.ru/news/2024-07-06-v-irkutskoy-oblasti-vozbuzhdeno-delo-o-moshennichestve-s-uglem-na-5-mln-rubley
Наиболее свежие события моды.
Исчерпывающие новости мировых подуимов.
Модные дома, бренды, высокая мода.
Новое место для модных людей.
https://emurmansk.ru/pub/2023-12-03-vinovnyy-v-shode-vagonov-poezda-murmansk-peterburg-budet-privlechen-k-otvetstvennosti/
Точно свежие новости подиума.
Актуальные эвенты самых влиятельных подуимов.
Модные дома, торговые марки, гедонизм.
Самое лучшее место для стильныех хайпбистов.
https://sport.mskfirst.ru/msk/2024-03-05-munitsipalnyy-etap-sorevnovaniy-po-shahmatam-v-sudake
Стильные советы по подбору отличных видов на любой день.
Статьи экспертов, новости, все новинки и мероприятия.
https://rftimes.ru/news/2024-09-05-sem-aktualnyh-lukov-2024-ot-brunello-cucinelli
Модные заметки по подбору крутых луков на каждый день.
Заметки экспертов, новости, все новинки и мероприятия.
https://ekbtoday.ru/news/2024-09-10-demna-gvasaliya-pereosmyslyaya-modu/
Модные советы по выбору отличных образов на каждый день.
Мнения стилистов, события, все дропы и мероприятия.
https://sochidaily.ru/read/2024-09-10-demna-gvasaliya-ikona-sovremennoy-mody-i-kreativnyy-revolyutsioner
Модные заметки по созданию превосходных луков на любой день.
Обзоры стилистов, события, все новинки и мероприятия.
https://omskdaily.ru/news/2024-09-20-10-samyh-vliyatelnyh-dizaynerov-2024-goda-trendsettery-kotorye-izmenyayut-modu/
Модные советы по подбору необычных видов на каждый день.
Статьи экспертов, новости, все дропы и шоу.
https://mvmedia.ru/novosti/123-10-interesnyh-faktov-o-vetements-brend-kotoryy-izmenil-mir-mody/
I don’t think the title of your article matches the content lol. Just kidding, mainly because I had some doubts after reading the article. https://accounts.binance.com/sl/register?ref=OMM3XK51
Модные советы по созданию крутых видов на любой день.
Мнения стилистов, события, все дропы и шоу.
https://luxe-moda.ru/chic/499-10-maloizvestnyh-faktov-o-demne-gvasalii/
Модные заметки по созданию стильных видов на любой день.
Мнения экспертов, события, все новинки и мероприятия.
https://julistyle.ru/moda/2024-05-01-jaeger-lecoultre-predstavila-novyy-hronograf-s-fazoy-luny-i-dnevnoy-nochyu/
Стильные советы по выбору крутых видов на любой день.
Обзоры экспертов, новости, все показы и мероприятия.
https://furluxury.ru/fur/2024-09-27-7-luchshih-sumok-jacquemus-2024-goda-stil-smelost-i-frantsuzskiy-shik/
Модные заметки по созданию отличных луков на любой день.
Заметки стилистов, события, все дропы и мероприятия.
https://watches.superpodium.com/fashion/2804-7-reasons-to-love-patek-philippe-nautilus/
Модные заметки по выбору стильных образов на каждый день.
Статьи стилистов, события, все новинки и мероприятия.
https://furluxury.ru/fur/2024-09-27-7-luchshih-sumok-jacquemus-2024-goda-stil-smelost-i-frantsuzskiy-shik/
Стильные советы по выбору стильных видов на любой день.
Заметки профессионалов, события, все новые коллекции и мероприятия.
https://urban-moda.ru/all/749-za-chto-my-lyubim-brend-coach-ikona-amerikanskogo-stilya-i-masterstva/
Модные заметки по подбору модных луков на любой день.
Заметки профессионалов, новости, все дропы и мероприятия.
https://sofiamoda.ru/style/2024-10-03-principe-di-bologna-roskosh-italyanskogo-stilya-i-elegantnost-na-kazhdyy-den/
Your vlog is very good it helps people who want to know things they don’t know
https://main7.top/theking/
Бренд Balenciaga является знаменитым модных домов, который был основан в начале 20 века легендарным кутюрье Кристобалем Баленсиагой. Его узнают экстравагантными дизайнерскими решениями и авангардными кроями, которые часто бросают вызов стандартам индустрии.
https://balenciaga.whitesneaker.ru/
В нашем магазине вы можете приобрести кроссовки New Balance 574. Эта модель отличается удобством и современным внешним видом. New Balance 574 подойдут для повседневной носки. Выберите свою пару уже сегодня и почувствуйте разницу легендарного бренда.
https://nb574.sneakero.ru/
На данном ресурсе можно купить сумки от Balenciaga по доступной цене. Большой выбор позволяет найти сумку на любой вкус для любого. Заказывайте фирменные аксессуары этого знаменитого бренда быстро и просто.
https://bags.balenciager.ru/
Вещи бренда Balmain представлены в нашем магазине. Откройте для себя коллекцию стильных вещей от знаменитого французского бренда
https://shop.balmain1.ru
Вещи бренда Fendi представлены здесь. Большой выбор Fendi позволяет выбрать идеальные вещи в вашу коллекцию.
Fendi официальный сайт
Hi there! Do you know if they make any plugins to help with
SEO? I’m trying to get my website to rank for some targeted keywords but I’m not
seeing very good success. If you know of any please share.
Thank you! You can read similar text here:
Eco wool
The West Highland White Terrier’s coat is so vital that it was bred for that function, particularly.