Searched refs:layers (Results 1 - 4 of 4) sorted by relevance

/packages/apps/InCallUI/src/com/android/incallui/
H A DInCallAnimationUtils.java56 public CrossFadeDrawable(Drawable[] layers) { argument
57 super(layers);
98 Drawable[] layers = new Drawable[2];
99 layers[0] = first;
100 layers[1] = second;
101 return new CrossFadeDrawable(layers);
162 Drawable[] layers = new Drawable[2];
163 layers[0] = from;
164 layers[1] = to;
165 TransitionDrawable transitionDrawable = new TransitionDrawable(layers);
[all...]
H A DCallButtonFragment.java255 final LayerDrawable layers = (LayerDrawable) button.getBackground();
257 layers.setDrawableByLayerId(R.id.compoundBackgroundItem, btnCompoundDrawable);
269 final LayerDrawable layers = (LayerDrawable) button.getBackground();
271 layers.setDrawableByLayerId(R.id.backgroundItem, btnDrawable);
593 * Updates the audio button so that the appriopriate visual layers
617 // Update desired layers:
642 // update desired layers:
654 // update desired layers:
672 final LayerDrawable layers = (LayerDrawable) mAudioButton.getBackground();
673 Log.d(this, "'layers' drawabl
[all...]
/packages/screensavers/PhotoTable/src/com/android/dreams/phototable/
H A DPhotoTable.java467 Drawable[] layers = new Drawable[2];
474 layers[0] = new BitmapDrawable(table.mResources, decodedPhoto);
475 layers[1] = table.mResources.getDrawable(R.drawable.frame);
476 LayerDrawable layerList = new LayerDrawable(layers);
966 LayerDrawable layers = (LayerDrawable) image.getDrawable();
967 if (layers == null) {
970 BitmapDrawable bitmap = (BitmapDrawable) layers.getDrawable(0);
986 LayerDrawable layers = (LayerDrawable) image.getDrawable();
988 layers.getDrawable(1).setColorFilter(mHighlightColor, PorterDuff.Mode.SRC_IN);
990 layers
[all...]
/packages/apps/ContactsCommon/src/com/android/contacts/common/
H A DContactPhotoManager.java960 final Drawable[] layers = new Drawable[2];
965 layers[0] = previousTransitionDrawable.getDrawable(
968 layers[0] = previousDrawable;
970 layers[1] = getDrawableForBitmap(mContext.getResources(), cachedBitmap, request);
971 TransitionDrawable drawable = new TransitionDrawable(layers);

Completed in 723 milliseconds