Преглед на файлове

[카테고리메인][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>