diff options
Diffstat (limited to 'res/transition')
-rw-r--r-- | res/transition/explode.xml | 17 | ||||
-rw-r--r-- | res/transition/slide_left.xml | 25 | ||||
-rw-r--r-- | res/transition/slide_right.xml | 25 |
3 files changed, 67 insertions, 0 deletions
diff --git a/res/transition/explode.xml b/res/transition/explode.xml new file mode 100644 index 0000000..9f7c66e --- /dev/null +++ b/res/transition/explode.xml @@ -0,0 +1,17 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + Copyright (C) 2015 The CyanogenMod Project + + 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. +--> +<explode/> diff --git a/res/transition/slide_left.xml b/res/transition/slide_left.xml new file mode 100644 index 0000000..501d191 --- /dev/null +++ b/res/transition/slide_left.xml @@ -0,0 +1,25 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + Copyright (C) 2015 The CyanogenMod Project + + 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. +--> +<transitionSet xmlns:android="http://schemas.android.com/apk/res/android" + android:transitionOrdering="sequential"> +<changeBounds/> +<slide android:slideEdge="left" > + <targets> + <target android:targetId="@id/page" /> + </targets> +</slide> +</transitionSet>
\ No newline at end of file diff --git a/res/transition/slide_right.xml b/res/transition/slide_right.xml new file mode 100644 index 0000000..4f129c7 --- /dev/null +++ b/res/transition/slide_right.xml @@ -0,0 +1,25 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + Copyright (C) 2015 The CyanogenMod Project + + 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. +--> +<transitionSet xmlns:android="http://schemas.android.com/apk/res/android" + android:transitionOrdering="sequential"> + <changeBounds/> + <slide android:slideEdge="right" > + <targets> + <target android:targetId="@id/page" /> + </targets> + </slide> +</transitionSet>
\ No newline at end of file |