README.md
1Android BasicTransition Sample
2===================================
3
4A basic app showing how to use the Transition framework introduced in
5KitKat. The app shows radioboxes to select between different Scenes,
6and uses various ways to transition between them.
7
8Introduction
9------------
10
11A Scene is an encapsulation of the state of a view hierarchy,
12including the views in that hierarchy and the various values
13(layout-related and otherwise) that those views have. A scene can be
14defined by a layout hierarchy directly or by code which sets up the
15scene dynamically as it is entered.
16
17A Transition is a mechanism to automatically animate changes that
18occur when a new scene is entered. Some transition capabilities are
19automatic. That is, entering a scene may cause animations to run which
20fade out views that go away, changeBounds and resize existing views
21that change, and fade in views that become visible. There are
22additional transitions that can animate other attributes, such as
23color changes, and which can optionally be specified to take place
24during particular scene changes. Finally, developers can define their
25own Transition subclasses which monitor particular property changes
26and which run custom animations when those properties change values.
27
28TransitionManager is used to specify custom transitions for particular
29scene changes, and to cause scene changes with specific transitions to
30take place.
31
32Pre-requisites
33--------------
34
35- Android SDK v21
36- Android Build Tools v21.1.1
37- Android Support Repository
38
39Screenshots
40-------------
41
42<img src="screenshots/main.png" height="400" alt="Screenshot"/>
43
44Getting Started
45---------------
46
47This sample uses the Gradle build system. To build this project, use the
48"gradlew build" command or use "Import Project" in Android Studio.
49
50Support
51-------
52
53- Google+ Community: https://plus.google.com/communities/105153134372062985968
54- Stack Overflow: http://stackoverflow.com/questions/tagged/android
55
56If you've found an error in this sample, please file an issue:
57https://github.com/googlesamples/android-BasicTransition
58
59Patches are encouraged, and may be submitted by forking this project and
60submitting a pull request through GitHub. Please see CONTRIBUTING.md for more details.
61
62License
63-------
64
65Copyright 2014 The Android Open Source Project, Inc.
66
67Licensed to the Apache Software Foundation (ASF) under one or more contributor
68license agreements. See the NOTICE file distributed with this work for
69additional information regarding copyright ownership. The ASF licenses this
70file to you under the Apache License, Version 2.0 (the "License"); you may not
71use this file except in compliance with the License. You may obtain a copy of
72the License at
73
74http://www.apache.org/licenses/LICENSE-2.0
75
76Unless required by applicable law or agreed to in writing, software
77distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
78WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
79License for the specific language governing permissions and limitations under
80the License.
81