summaryrefslogtreecommitdiff
path: root/org.fox.ttrss/src/main/res/anim
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2015-11-28 16:30:12 +0300
committerAndrew Dolgov <[email protected]>2015-11-28 16:30:12 +0300
commit4b09961a303173eed338a3ef9f6974d2f932e120 (patch)
tree97edad3a0f5c57a610f3f65a2fc98f1f6e0f5673 /org.fox.ttrss/src/main/res/anim
parentb28fef66e85854172103114c15f1722ad6375dea (diff)
implement chrome custom tabs
Diffstat (limited to 'org.fox.ttrss/src/main/res/anim')
-rwxr-xr-xorg.fox.ttrss/src/main/res/anim/slide_in_left.xml24
-rwxr-xr-xorg.fox.ttrss/src/main/res/anim/slide_in_right.xml24
-rwxr-xr-xorg.fox.ttrss/src/main/res/anim/slide_out_left.xml24
-rwxr-xr-xorg.fox.ttrss/src/main/res/anim/slide_out_right.xml24
4 files changed, 96 insertions, 0 deletions
diff --git a/org.fox.ttrss/src/main/res/anim/slide_in_left.xml b/org.fox.ttrss/src/main/res/anim/slide_in_left.xml
new file mode 100755
index 00000000..281da62a
--- /dev/null
+++ b/org.fox.ttrss/src/main/res/anim/slide_in_left.xml
@@ -0,0 +1,24 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!--
+/* //device/apps/common/res/anim/slide_in_left.xml
+**
+** Copyright 2007, Google Inc.
+**
+** Licensed under the Apache License, Version 2.0 (the "License");
+** you may not use this file except in compliance with the License.
+** You may obtain a copy of the License at
+**
+** http://www.apache.org/licenses/LICENSE-2.0
+**
+** Unless required by applicable law or agreed to in writing, software
+** distributed under the License is distributed on an "AS IS" BASIS,
+** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+** See the License for the specific language governing permissions and
+** limitations under the License.
+*/
+-->
+
+<set xmlns:android="http://schemas.android.com/apk/res/android">
+ <translate android:fromXDelta="-50%p" android:toXDelta="0" android:duration="200"/>
+ <alpha android:fromAlpha="0.0" android:toAlpha="1.0" android:duration="200" />
+</set> \ No newline at end of file
diff --git a/org.fox.ttrss/src/main/res/anim/slide_in_right.xml b/org.fox.ttrss/src/main/res/anim/slide_in_right.xml
new file mode 100755
index 00000000..6fbb8979
--- /dev/null
+++ b/org.fox.ttrss/src/main/res/anim/slide_in_right.xml
@@ -0,0 +1,24 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!--
+/* //device/apps/common/res/anim/slide_in_right.xml
+**
+** Copyright 2007, Google Inc.
+**
+** Licensed under the Apache License, Version 2.0 (the "License");
+** you may not use this file except in compliance with the License.
+** You may obtain a copy of the License at
+**
+** http://www.apache.org/licenses/LICENSE-2.0
+**
+** Unless required by applicable law or agreed to in writing, software
+** distributed under the License is distributed on an "AS IS" BASIS,
+** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+** See the License for the specific language governing permissions and
+** limitations under the License.
+*/
+-->
+
+<set xmlns:android="http://schemas.android.com/apk/res/android">
+ <translate android:fromXDelta="50%p" android:toXDelta="0" android:duration="200"/>
+ <alpha android:fromAlpha="0.0" android:toAlpha="1.0" android:duration="200" />
+</set> \ No newline at end of file
diff --git a/org.fox.ttrss/src/main/res/anim/slide_out_left.xml b/org.fox.ttrss/src/main/res/anim/slide_out_left.xml
new file mode 100755
index 00000000..b3adeaa6
--- /dev/null
+++ b/org.fox.ttrss/src/main/res/anim/slide_out_left.xml
@@ -0,0 +1,24 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!--
+/* //device/apps/common/res/anim/slide_out_left.xml
+**
+** Copyright 2007, Google Inc.
+**
+** Licensed under the Apache License, Version 2.0 (the "License");
+** you may not use this file except in compliance with the License.
+** You may obtain a copy of the License at
+**
+** http://www.apache.org/licenses/LICENSE-2.0
+**
+** Unless required by applicable law or agreed to in writing, software
+** distributed under the License is distributed on an "AS IS" BASIS,
+** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+** See the License for the specific language governing permissions and
+** limitations under the License.
+*/
+-->
+
+<set xmlns:android="http://schemas.android.com/apk/res/android">
+ <translate android:fromXDelta="0" android:toXDelta="-50%p" android:duration="200"/>
+ <alpha android:fromAlpha="1.0" android:toAlpha="0.0" android:duration="200" />
+</set> \ No newline at end of file
diff --git a/org.fox.ttrss/src/main/res/anim/slide_out_right.xml b/org.fox.ttrss/src/main/res/anim/slide_out_right.xml
new file mode 100755
index 00000000..30b5eba8
--- /dev/null
+++ b/org.fox.ttrss/src/main/res/anim/slide_out_right.xml
@@ -0,0 +1,24 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!--
+/* //device/apps/common/res/anim/slide_out_right.xml
+**
+** Copyright 2007, Google Inc.
+**
+** Licensed under the Apache License, Version 2.0 (the "License");
+** you may not use this file except in compliance with the License.
+** You may obtain a copy of the License at
+**
+** http://www.apache.org/licenses/LICENSE-2.0
+**
+** Unless required by applicable law or agreed to in writing, software
+** distributed under the License is distributed on an "AS IS" BASIS,
+** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+** See the License for the specific language governing permissions and
+** limitations under the License.
+*/
+-->
+
+<set xmlns:android="http://schemas.android.com/apk/res/android">
+ <translate android:fromXDelta="0" android:toXDelta="50%p" android:duration="200"/>
+ <alpha android:fromAlpha="1.0" android:toAlpha="0.0" android:duration="200" />
+</set> \ No newline at end of file