Home | History | Annotate | only in /developers/build/prebuilts/gradle/ActivitySceneTransitionBasic
Up to higher level directory
NameDateSize
.google/23-Apr-2015
Application/23-Apr-2015
build.gradle23-Apr-201514
CONTRIB.md23-Apr-20151.6K
CONTRIBUTING.md23-Apr-20151.5K
gradle/23-Apr-2015
gradlew23-Apr-20155K
gradlew.bat23-Apr-20152.3K
LICENSE23-Apr-201511.1K
NOTICE23-Apr-20151.1K
packaging.yaml23-Apr-2015504
README.md23-Apr-20152.5K
screenshots/23-Apr-2015
settings.gradle23-Apr-201522

README.md

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