• Home
Name Date Size #Lines LOC

..--

Application/03-May-2024-885428

buildSrc/03-May-2024-1913

gradle/wrapper/03-May-2024-65

screenshots/03-May-2024-

CONTRIB.mdD03-May-20241.6 KiB3627

LICENSED03-May-202411.1 KiB204170

README.mdD03-May-20242.5 KiB6846

build.gradleD03-May-2024263 159

gradlewD03-May-20245.2 KiB173128

gradlew.batD03-May-20242.2 KiB8561

packaging.yamlD03-May-2024504 1610

settings.gradleD03-May-202422 21

template-params.xmlD03-May-20242.8 KiB8254

README.md

1
2Android ActivitySceneTransitionBasic Sample
3===================================
4
5This sample shows how to use scene transitions from one Activity to another in Lollipop.
6Uses a combination of changeImageTransform and changeBounds to transition a grid of images
7to an Activity with a large image and detail text.
8
9Introduction
10------------
11
12Android Lollipop has introduced the ability to transition between activities by using a shared element.
13This sample demonstrates how to do this using the theme of your application.
14
15See [Defining Custom Animations][1] for all the details on how to do this.
16
17[1]: https://developer.android.com/training/material/animations.html#Transitions
18
19Pre-requisites
20--------------
21
22- Android SDK 28
23- Android Build Tools v28.0.3
24- Android Support Repository
25
26Screenshots
27-------------
28
29<img src="screenshots/1-main.png" height="400" alt="Screenshot"/> <img src="screenshots/2-transition.png" height="400" alt="Screenshot"/> <img src="screenshots/3-transition.png" height="400" alt="Screenshot"/> <img src="screenshots/4-detail.png" height="400" alt="Screenshot"/>
30
31Getting Started
32---------------
33
34This sample uses the Gradle build system. To build this project, use the
35"gradlew build" command or use "Import Project" in Android Studio.
36
37Support
38-------
39
40- Google+ Community: https://plus.google.com/communities/105153134372062985968
41- Stack Overflow: http://stackoverflow.com/questions/tagged/android
42
43If you've found an error in this sample, please file an issue:
44https://github.com/googlesamples/android-ActivitySceneTransitionBasic
45
46Patches are encouraged, and may be submitted by forking this project and
47submitting a pull request through GitHub. Please see CONTRIBUTING.md for more details.
48
49License
50-------
51
52Copyright 2019 The Android Open Source Project, Inc.
53
54Licensed to the Apache Software Foundation (ASF) under one or more contributor
55license agreements.  See the NOTICE file distributed with this work for
56additional information regarding copyright ownership.  The ASF licenses this
57file to you under the Apache License, Version 2.0 (the "License"); you may not
58use this file except in compliance with the License.  You may obtain a copy of
59the License at
60
61http://www.apache.org/licenses/LICENSE-2.0
62
63Unless required by applicable law or agreed to in writing, software
64distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
65WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.  See the
66License for the specific language governing permissions and limitations under
67the License.
68