Browse Source

[카테고리메인][Common] 카테고리 탭 애니메이션 파일 생성

Hasemi 6 năm trước cách đây
mục cha
commit
9e097b44ce

+ 7 - 0
app/src/main/res/anim/category_tab_close.xml

@@ -0,0 +1,7 @@
+<set xmlns:android="http://schemas.android.com/apk/res/android"
+     android:interpolator="@android:anim/linear_interpolator">
+  <scale
+    android:duration="500"
+    android:fromYScale="1.0"
+    android:toYScale="0.0"/>
+</set>

+ 7 - 0
app/src/main/res/anim/category_tab_open.xml

@@ -0,0 +1,7 @@
+<set xmlns:android="http://schemas.android.com/apk/res/android"
+     android:interpolator="@android:anim/linear_interpolator">
+  <scale
+    android:duration="500"
+    android:fromYScale="0.0"
+    android:toYScale="1.0"/>
+</set>