mirror of
https://github.com/SchildiChat/SchildiChat-android.git
synced 2025-01-04 15:27:33 +03:00
16 lines
483 B
XML
16 lines
483 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<set xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content">
|
|
<translate
|
|
android:duration="300"
|
|
android:fromXDelta="0%"
|
|
android:interpolator="@android:anim/decelerate_interpolator"
|
|
android:toXDelta="100%" />
|
|
|
|
<alpha
|
|
android:duration="300"
|
|
android:fromAlpha="1.0"
|
|
android:toAlpha="0.0" />
|
|
|
|
</set>
|