blob: 05bed5fc17ada36dde7f0f240a42222b4f024e7c [file] [log] [blame]
Chet Haasefaebd8f2012-05-18 14:17:57 -07001/*
2 * Copyright (C) 2013 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16package com.android.transitiontests;
17
18import android.app.Activity;
19import android.os.Bundle;
20import android.view.View;
21import android.view.ViewGroup;
22import android.view.transition.Scene;
23import android.widget.Button;
24import android.view.transition.Fade;
25import android.view.transition.Move;
26import android.view.transition.TextChange;
27import android.view.transition.TransitionGroup;
28import android.view.transition.TransitionManager;
Chet Haasefaebd8f2012-05-18 14:17:57 -070029
30public class ChangingText extends Activity {
31
Chet Haasefaebd8f2012-05-18 14:17:57 -070032 Scene mScene1, mScene2;
33 ViewGroup mSceneRoot;
Chet Haasefaebd8f2012-05-18 14:17:57 -070034 TransitionGroup mChanger;
35
36 @Override
37 public void onCreate(Bundle savedInstanceState) {
38 super.onCreate(savedInstanceState);
39 setContentView(R.layout.changing_text_1);
40
41 View container = (View) findViewById(R.id.container);
42 mSceneRoot = (ViewGroup) container.getParent();
43
44 mScene1 = new Scene(mSceneRoot, R.layout.changing_text_1, this);
45 mScene2 = new Scene(mSceneRoot, R.layout.changing_text_2, this);
46
47 mChanger = new TransitionGroup(TransitionGroup.TOGETHER);
48 mChanger.addTransitions(new Move(), new TextChange());
49
50 mSceneRoot.setCurrentScene(mScene1);
51 }
52
53 public void sendMessage(View view) {
54 if (mSceneRoot.getCurrentScene() == mScene1) {
55 TransitionManager.go(mScene2, mChanger);
56 } else {
57 TransitionManager.go(mScene1, mChanger);
58 }
59 }
60}