Signal-Android/app/src/main/res/values/animations.xml
Android Team 08e86b8c82 Add Emoji Search, Sticker Search, and GIF Keyboard.
Co-authored-by: Alex Hart <alex@signal.org>
Co-authored-by: Cody Henthorne <cody@signal.org>
Co-authored-by: ⁨Greyson Parrelli<greyson@signal.org>
2021-06-02 17:43:17 -04:00

22 lines
No EOL
1,011 B
XML

<?xml version="1.0" encoding="utf-8"?>
<resources>
<style name="PopupAnimation" parent="@android:style/Animation">
<item name="android:windowEnterAnimation">@anim/slide_from_top</item>
<item name="android:windowExitAnimation">@anim/slide_to_top</item>
</style>
<style name="FakeBottomSheet" parent="@android:style/Animation">
<item name="android:windowEnterAnimation">@anim/slide_fade_from_bottom</item>
<item name="android:windowExitAnimation">@anim/slide_fade_to_bottom</item>
</style>
<style name="FadeScale" parent="@android:style/Animation">
<item name="android:windowEnterAnimation">@anim/fade_scale_in</item>
<item name="android:windowExitAnimation">@anim/fade_scale_out</item>
</style>
<style name="StickerPopupAnimation" parent="@android:style/Animation">
<item name="android:windowEnterAnimation">@anim/fade_in</item>
<item name="android:windowExitAnimation">@anim/fade_out</item>
</style>
</resources>