浏览代码

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

Hasemi 6 年之前
父节点
当前提交
9e097b44ce
共有 2 个文件被更改,包括 14 次插入0 次删除
  1. 7 0
      app/src/main/res/anim/category_tab_close.xml
  2. 7 0
      app/src/main/res/anim/category_tab_open.xml

+ 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>