/frameworks/base/tests/TransitionTests/src/com/android/transitiontests/ |
CrossFadeDemo.java | 23 import android.transition.Crossfade; 39 setContentView(R.layout.crossfade); 44 mScene1 = Scene.getSceneForLayout(mSceneRoot, R.layout.crossfade, this); 47 Crossfade crossfade = new Crossfade(); local 48 crossfade.setFadeBehavior(Crossfade.FADE_BEHAVIOR_CROSSFADE); 49 crossfade.setResizeBehavior(Crossfade.RESIZE_BEHAVIOR_NONE) [all...] |
CrossfadeMultiple.java | 23 import android.transition.Crossfade; 42 Crossfade mCrossfade; 59 mCrossfade = new Crossfade(); 68 Crossfade inOut = new Crossfade(); 70 inOut.setFadeBehavior(Crossfade.FADE_BEHAVIOR_OUT_IN); 125 mCrossfade.setFadeBehavior(Crossfade.FADE_BEHAVIOR_REVEAL); 128 case R.id.crossfade: 129 mCrossfade.setFadeBehavior(Crossfade.FADE_BEHAVIOR_CROSSFADE);
|
CrossfadeImage.java | 22 import android.transition.Crossfade; 50 Crossfade mCrossfade = new Crossfade();
|
ContactsExpansion.java | 31 import android.transition.Crossfade; 82 addTransition(new Crossfade().addTarget(R.id.contact_picture));
|
SurfaceAndTextureViews.java | 30 import android.transition.Crossfade; 70 transition.addTransition(new ChangeBounds()).addTransition(new Crossfade().addTarget(0).
|
/external/glide/library/src/main/java/com/bumptech/glide/ |
DrawableOptions.java | 11 * @see #crossFade(int) 12 * @see #crossFade(int, int) 16 GenericRequestBuilder<?, ?, ?, ?> crossFade(); 22 * @see #crossFade() 23 * @see #crossFade(int, int) 28 GenericRequestBuilder<?, ?, ?, ?> crossFade(int duration); 36 * @see #crossFade() 37 * @see #crossFade(int) 38 * @see #crossFade(int, int) 42 * views animating repeatedly. Use {@link #crossFade(int, int)}} instead, or be sure to call this method onc [all...] |
DrawableRequestBuilder.java | 50 crossFade(); 245 public final DrawableRequestBuilder<ModelType> crossFade() { 253 public DrawableRequestBuilder<ModelType> crossFade(int duration) { 262 public DrawableRequestBuilder<ModelType> crossFade(Animation animation, int duration) { 270 public DrawableRequestBuilder<ModelType> crossFade(int animationId, int duration) {
|
GifRequestBuilder.java | 232 public GifRequestBuilder<ModelType> crossFade() { 241 public GifRequestBuilder<ModelType> crossFade(int duration) { 251 public GifRequestBuilder<ModelType> crossFade(Animation animation, int duration) { 260 public GifRequestBuilder<ModelType> crossFade(int animationId, int duration) {
|
GifTypeRequest.java | 46 crossFade();
|
/frameworks/base/docs/html/training/animation/ |
crossfade.jd | 20 <a href="#animate">Crossfade the Views</a> 37 Crossfade animations (also know as dissolve) gradually fade out one UI component while simultaneously fading in 42 <p>Here's an example of a crossfade from a progress indicator to some text content. 53 Crossfade animation 60 and run the sample app and select the Crossfade example. 78 Create the two views that you want to crossfade. The following example creates a progress 115 <li>Create member variables for the views that you want to crossfade. You need 160 Crossfade the Views 163 Now that the views are properly set up, crossfade them by doing the following: 191 private void crossfade() { [all...] |
index.jd | 57 <b><a href="crossfade.html">Crossfading Two Views</a></b> 60 Learn how to crossfade between two overlapping views. This lesson shows you how to crossfade a progress
|
/frameworks/base/core/java/android/transition/ |
Crossfade.java | 47 public class Crossfade extends Transition { 51 private static final String LOG_TAG = "Crossfade"; 53 private static final String PROPNAME_BITMAP = "android:crossfade:bitmap"; 54 private static final String PROPNAME_DRAWABLE = "android:crossfade:drawable"; 55 private static final String PROPNAME_BOUNDS = "android:crossfade:bounds"; 124 public Crossfade setFadeBehavior(int fadeBehavior) { 134 * @return This crossfade object. 149 public Crossfade setResizeBehavior(int resizeBehavior) { 159 * @return This crossfade object. 219 Log.d(LOG_TAG, "Crossfade: created anim " + anim + " for start, end values " [all...] |
/packages/apps/Launcher2/src/com/android/launcher2/ |
DragView.java | 184 boolean crossFade = mCrossFadeProgress > 0 && mCrossFadeBitmap != null; 185 if (crossFade) { 186 int alpha = crossFade ? (int) (255 * (1 - mCrossFadeProgress)) : 255; 190 if (crossFade) { 205 public void crossFade(int duration) {
|
/frameworks/base/tests/TransitionTests/res/layout/ |
crossfade_multiple.xml | 19 android:id="@+id/crossfade" 20 android:text="@string/crossfade"/>
|
/frameworks/base/tests/TransitionTests/res/values/ |
strings.xml | 56 <string name="crossfade">Crossfade</string>
|
/frameworks/base/graphics/java/android/graphics/drawable/ |
TransitionDrawable.java | 189 final boolean crossFade = mCrossFade; 195 if (!crossFade || alpha == 0) { 206 if (crossFade) { 210 if (crossFade) {
|
/packages/apps/Launcher3/src/com/android/launcher3/ |
DragView.java | 209 boolean crossFade = mCrossFadeProgress > 0 && mCrossFadeBitmap != null; 210 if (crossFade) { 211 int alpha = crossFade ? (int) (255 * (1 - mCrossFadeProgress)) : 255; 215 if (crossFade) { 230 public void crossFade(int duration) {
|
/developers/build/prebuilts/gradle/GridViewPager/Wearable/src/main/res/values/ |
strings.xml | 33 <string name="backgrounds_text">Backgrounds are supplied by the adapter\'s getBackground method. Parallax and crossfade effects are applied automatically.</string>
|
/developers/samples/android/wearable/wear/GridViewPager/Wearable/src/main/res/values/ |
strings.xml | 33 <string name="backgrounds_text">Backgrounds are supplied by the adapter\'s getBackground method. Parallax and crossfade effects are applied automatically.</string>
|
/development/samples/ApiDemos/res/layout/ |
rotation_animation.xml | 63 android:id="@+id/crossfade"
|
/development/samples/ApiDemos/src/com/example/android/apis/app/ |
RotationAnimation.java | 61 case R.id.crossfade:
|
/development/samples/browseable/GridViewPager/res/values/ |
strings.xml | 33 <string name="backgrounds_text">Backgrounds are supplied by the adapter\'s getBackground method. Parallax and crossfade effects are applied automatically.</string>
|
/external/webrtc/webrtc/modules/audio_coding/neteq/ |
audio_multi_vector.cc | 176 void AudioMultiVector::CrossFade(const AudioMultiVector& append_this, 181 channels_[i]->CrossFade(append_this[i], fade_length);
|
accelerate.cc | 76 output->CrossFade(temp_vector, peak_index);
|
/development/samples/training/AnimationsDemo/res/values/ |
strings.xml | 21 <string name="title_crossfade">Simple Crossfade</string>
|