OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:changeBounds
(Results
1 - 6
of
6
) sorted by null
/frameworks/base/tests/TransitionTests/src/com/android/transitiontests/
ClippingText.java
20
import android.transition.
ChangeBounds
;
52
ChangeBounds
changeBounds
= new
ChangeBounds
();
53
changeBounds
.setResizeClip(true);
54
mChanger.addTransition(
changeBounds
).addTransition(new ChangeText());
CrossfadeMultiple.java
20
import android.transition.
ChangeBounds
;
64
mCrossfadeGroup.addTransition(mCrossfade).addTransition(new
ChangeBounds
());
71
ChangeBounds
changeBounds
= new
ChangeBounds
();
72
changeBounds
.setStartDelay(150);
73
changeBounds
.setDuration(0);
74
mInOutGroup.addTransition(inOut).addTransition(
changeBounds
);
79
mTextChangeGroup1.addTransition(changeTextInOut).addTransition(new
ChangeBounds
());
85
mTextChangeGroup2.addTransition(changeTextOut).addTransition(new
ChangeBounds
());
[
all
...]
/frameworks/support/v17/leanback/kitkat/android/support/v17/leanback/transition/
TransitionHelperKitkat.java
20
import android.transition.
ChangeBounds
;
81
static class CustomChangeBounds extends
ChangeBounds
{
135
CustomChangeBounds
changeBounds
= new CustomChangeBounds();
136
changeBounds
.setReparent(reparent);
137
return
changeBounds
;
140
static void setChangeBoundsStartDelay(Object
changeBounds
, int viewId, int startDelay) {
141
((CustomChangeBounds)
changeBounds
).setStartDelay(viewId, startDelay);
144
static void setChangeBoundsStartDelay(Object
changeBounds
, View view, int startDelay) {
145
((CustomChangeBounds)
changeBounds
).setStartDelay(view, startDelay);
148
static void setChangeBoundsStartDelay(Object
changeBounds
, String className, int startDelay)
[
all
...]
/frameworks/support/v17/leanback/src/android/support/v17/leanback/transition/
TransitionHelper.java
93
public void setChangeBoundsStartDelay(Object
changeBounds
, View view, int startDelay);
95
public void setChangeBoundsStartDelay(Object
changeBounds
, int viewId, int startDelay);
97
public void setChangeBoundsStartDelay(Object
changeBounds
, String className,
100
public void setChangeBoundsDefaultStartDelay(Object
changeBounds
, int startDelay);
215
public void setChangeBoundsStartDelay(Object
changeBounds
, View view, int startDelay) {
219
public void setChangeBoundsStartDelay(Object
changeBounds
, int viewId, int startDelay) {
223
public void setChangeBoundsStartDelay(Object
changeBounds
, String className,
228
public void setChangeBoundsDefaultStartDelay(Object
changeBounds
, int startDelay) {
387
public void setChangeBoundsStartDelay(Object
changeBounds
, View view, int startDelay) {
388
TransitionHelperKitkat.setChangeBoundsStartDelay(
changeBounds
, view, startDelay)
[
all
...]
/frameworks/base/core/java/android/view/animation/
AnimationSet.java
226
boolean
changeBounds
= (mFlags & PROPERTY_CHANGE_BOUNDS_MASK) == 0;
229
if (
changeBounds
&& a.willChangeBounds()) {
/prebuilts/sdk/current/support/v17/leanback/libs/
android-support-v17-leanback.jar
Completed in 1494 milliseconds