Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/news-android.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Development <david-dev@live.de>2015-07-18 12:10:59 +0300
committerDavid Development <david-dev@live.de>2015-07-18 12:18:31 +0300
commit9ecc0f1fc5fdcb0629c7561556d570f9ba5ff98e (patch)
treef23c28ef173033abb49fe4c9ed94fa8d38a9dac1 /News-Android-App/src/main/res/anim
parent66a855e36eecf61e119d4363fb7c930a16d3bb1e (diff)
Add Chrome Custom Tabs - #363
Diffstat (limited to 'News-Android-App/src/main/res/anim')
-rw-r--r--News-Android-App/src/main/res/anim/slide_in_left.xml19
-rw-r--r--News-Android-App/src/main/res/anim/slide_in_right.xml19
-rw-r--r--News-Android-App/src/main/res/anim/slide_out_left.xml19
-rw-r--r--News-Android-App/src/main/res/anim/slide_out_right.xml19
4 files changed, 76 insertions, 0 deletions
diff --git a/News-Android-App/src/main/res/anim/slide_in_left.xml b/News-Android-App/src/main/res/anim/slide_in_left.xml
new file mode 100644
index 00000000..373537bb
--- /dev/null
+++ b/News-Android-App/src/main/res/anim/slide_in_left.xml
@@ -0,0 +1,19 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Copyright 2015 Google Inc. All Rights Reserved.
+
+ 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="-100%p" android:toXDelta="0"
+ android:duration="@android:integer/config_mediumAnimTime"/>
+</set>
diff --git a/News-Android-App/src/main/res/anim/slide_in_right.xml b/News-Android-App/src/main/res/anim/slide_in_right.xml
new file mode 100644
index 00000000..75d06759
--- /dev/null
+++ b/News-Android-App/src/main/res/anim/slide_in_right.xml
@@ -0,0 +1,19 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Copyright 2015 Google Inc. All Rights Reserved.
+
+ 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="100%p" android:toXDelta="0"
+ android:duration="@android:integer/config_mediumAnimTime"/>
+</set>
diff --git a/News-Android-App/src/main/res/anim/slide_out_left.xml b/News-Android-App/src/main/res/anim/slide_out_left.xml
new file mode 100644
index 00000000..6ce16766
--- /dev/null
+++ b/News-Android-App/src/main/res/anim/slide_out_left.xml
@@ -0,0 +1,19 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Copyright 2015 Google Inc. All Rights Reserved.
+
+ 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="-100%p"
+ android:duration="@android:integer/config_mediumAnimTime"/>
+</set>
diff --git a/News-Android-App/src/main/res/anim/slide_out_right.xml b/News-Android-App/src/main/res/anim/slide_out_right.xml
new file mode 100644
index 00000000..def11b24
--- /dev/null
+++ b/News-Android-App/src/main/res/anim/slide_out_right.xml
@@ -0,0 +1,19 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Copyright 2015 Google Inc. All Rights Reserved.
+
+ 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="100%p"
+ android:duration="@android:integer/config_mediumAnimTime"/>
+</set>