blob: 469ee8b28a9f6c22fc01e0e8204c22334b059efb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
|
/*
* Copyright (C) 2013 The Android Open Source 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.
*/
package com.android.transitiontests;
import android.app.Activity;
import android.os.Bundle;
import android.transition.ChangeBounds;
import android.view.View;
import android.view.ViewGroup;
import android.transition.Crossfade;
import android.transition.ChangeText;
import android.transition.Transition;
import android.transition.TransitionSet;
import android.transition.TransitionManager;
import android.widget.Button;
import android.widget.ImageView;
import android.widget.TextView;
import static android.widget.LinearLayout.LayoutParams;
public class CrossfadeMultiple extends Activity {
ViewGroup mSceneRoot;
static int mCurrentScene;
TransitionManager mTransitionManager;
Transition mTransition;
ImageView mImageView;
TextView mTextView;
Button mButton;
Crossfade mCrossfade;
TransitionSet mCrossfadeGroup;
TransitionSet mTextChangeGroup1, mTextChangeGroup2, mTextChangeGroup3;
TransitionSet mInOutGroup;
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.crossfade_multiple);
ViewGroup container = (ViewGroup) findViewById(R.id.container);
mSceneRoot = container;
mButton = (Button) findViewById(R.id.button);
mImageView = (ImageView) findViewById(R.id.imageview);
mTextView = (TextView) findViewById(R.id.textview);
mCrossfade = new Crossfade();
mCrossfade.addTarget(R.id.button).addTarget(R.id.textview).addTarget(R.id.imageview);
mCrossfadeGroup = new TransitionSet();
mCrossfadeGroup.setDuration(300);
mCrossfadeGroup.addTransition(mCrossfade).addTransition(new ChangeBounds());
mTransition = mCrossfadeGroup;
mInOutGroup = new TransitionSet();
Crossfade inOut = new Crossfade();
inOut.setDuration(300);
inOut.setFadeBehavior(Crossfade.FADE_BEHAVIOR_OUT_IN);
ChangeBounds changeBounds = new ChangeBounds();
changeBounds.setStartDelay(150);
changeBounds.setDuration(0);
mInOutGroup.addTransition(inOut).addTransition(changeBounds);
mTextChangeGroup1 = new TransitionSet();
ChangeText changeTextInOut = new ChangeText();
changeTextInOut.setChangeBehavior(ChangeText.CHANGE_BEHAVIOR_OUT_IN);
mTextChangeGroup1.addTransition(changeTextInOut).addTransition(new ChangeBounds());
mTextChangeGroup2 = new TransitionSet();
mTextChangeGroup2.setOrdering(TransitionSet.ORDERING_SEQUENTIAL);
ChangeText changeTextOut = new ChangeText();
changeTextOut.setChangeBehavior(ChangeText.CHANGE_BEHAVIOR_OUT);
mTextChangeGroup2.addTransition(changeTextOut).addTransition(new ChangeBounds());
mTextChangeGroup3 = new TransitionSet();
mTextChangeGroup3.setOrdering(TransitionSet.ORDERING_SEQUENTIAL);
ChangeText changeTextIn = new ChangeText();
changeTextIn.setChangeBehavior(ChangeText.CHANGE_BEHAVIOR_IN);
mTextChangeGroup3.addTransition(changeTextIn).addTransition(new ChangeBounds());
}
public void sendMessage(View view) {
TransitionManager.beginDelayedTransition(mSceneRoot, mTransition);
int id = view.getId();
LayoutParams params = null;
switch (id) {
case R.id.button1:
params = new LayoutParams(200, 200);
mButton.setText("A");
mTextView.setText("1111111");
mImageView.setImageResource(R.drawable.self_portrait_square_100);
break;
case R.id.button2:
params = new LayoutParams(400, 200);
mButton.setText("B");
mTextView.setText("2222222");
mImageView.setImageResource(R.drawable.self_portrait_square_200);
break;
case R.id.button3:
params = new LayoutParams(200, 400);
mButton.setText("C");
mTextView.setText("3333333");
mImageView.setImageResource(R.drawable.self_portrait_square_400);
break;
}
mButton.setLayoutParams(params);
}
public void changeTransitionType(View view) {
int id = view.getId();
switch (id) {
case R.id.reveal:
mCrossfade.setFadeBehavior(Crossfade.FADE_BEHAVIOR_REVEAL);
mTransition = mCrossfadeGroup;
break;
case R.id.crossfade:
mCrossfade.setFadeBehavior(Crossfade.FADE_BEHAVIOR_CROSSFADE);
mTransition = mCrossfadeGroup;
break;
case R.id.inout:
mTransition = mInOutGroup;
break;
case R.id.textfade1:
mTransition = mTextChangeGroup1;
break;
case R.id.textfade2:
mTransition = mTextChangeGroup2;
break;
case R.id.textfade3:
mTransition = mTextChangeGroup3;
break;
}
}
}
|