diff options
| author | Andrew Dolgov <noreply@fakecake.org> | 2014-10-17 00:06:56 +0400 |
|---|---|---|
| committer | Andrew Dolgov <noreply@fakecake.org> | 2014-10-17 00:06:56 +0400 |
| commit | 97cc96839d31b6cce59ec29a6681c6fe802552ee (patch) | |
| tree | 9f3b8df270095bc65c10cd7208d05b3dad4794b9 /res/anim | |
| parent | 5775c0d56b7c856b508bb34e478eef53c2460624 (diff) | |
initial
Diffstat (limited to 'res/anim')
| -rw-r--r-- | res/anim/feed_item.xml | 9 | ||||
| -rw-r--r-- | res/anim/headline_item.xml | 14 | ||||
| -rw-r--r-- | res/anim/layout_feeds.xml | 5 | ||||
| -rw-r--r-- | res/anim/layout_headline.xml | 5 | ||||
| -rw-r--r-- | res/anim/right_slide_in.xml | 9 | ||||
| -rw-r--r-- | res/anim/right_slide_out.xml | 9 |
6 files changed, 0 insertions, 51 deletions
diff --git a/res/anim/feed_item.xml b/res/anim/feed_item.xml deleted file mode 100644 index a60e0556..00000000 --- a/res/anim/feed_item.xml +++ /dev/null @@ -1,9 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?>
-<set xmlns:android="http://schemas.android.com/apk/res/android" android:interpolator="@android:anim/accelerate_interpolator">
- <alpha
- android:fromAlpha="0"
- android:toAlpha="1"
- android:duration="150"
- />
-</set>
-
diff --git a/res/anim/headline_item.xml b/res/anim/headline_item.xml deleted file mode 100644 index dbb60d23..00000000 --- a/res/anim/headline_item.xml +++ /dev/null @@ -1,14 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?>
-<set xmlns:android="http://schemas.android.com/apk/res/android" android:interpolator="@android:anim/accelerate_interpolator">
- <alpha
- android:fromAlpha="0"
- android:toAlpha="1"
- android:duration="250"
- />
- <translate
- android:fromXDelta="100%p"
- android:toXDelta="0"
- android:duration="250"
- />
-</set>
-
diff --git a/res/anim/layout_feeds.xml b/res/anim/layout_feeds.xml deleted file mode 100644 index 3e7c5003..00000000 --- a/res/anim/layout_feeds.xml +++ /dev/null @@ -1,5 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?>
-<layoutAnimation xmlns:android="http://schemas.android.com/apk/res/android"
- android:delay="20%"
- android:animation="@anim/feed_item"
-/>
\ No newline at end of file diff --git a/res/anim/layout_headline.xml b/res/anim/layout_headline.xml deleted file mode 100644 index 07b84d11..00000000 --- a/res/anim/layout_headline.xml +++ /dev/null @@ -1,5 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?>
-<layoutAnimation xmlns:android="http://schemas.android.com/apk/res/android"
- android:delay="20%"
- android:animation="@anim/headline_item"
-/>
\ No newline at end of file diff --git a/res/anim/right_slide_in.xml b/res/anim/right_slide_in.xml deleted file mode 100644 index 2bb5acc1..00000000 --- a/res/anim/right_slide_in.xml +++ /dev/null @@ -1,9 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<set xmlns:android="http://schemas.android.com/apk/res/android" android:interpolator="@android:anim/accelerate_decelerate_interpolator"> - <translate - android:fromXDelta="100%p" - android:toXDelta="0" - android:duration="200" - /> -</set> - diff --git a/res/anim/right_slide_out.xml b/res/anim/right_slide_out.xml deleted file mode 100644 index 134467f5..00000000 --- a/res/anim/right_slide_out.xml +++ /dev/null @@ -1,9 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<set xmlns:android="http://schemas.android.com/apk/res/android" android:interpolator="@android:anim/accelerate_decelerate_interpolator"> - <translate - android:fromXDelta="0" - android:toXDelta="100%p" - android:duration="200" - /> -</set> - |