Home | History | Annotate | Download | only in app

Lines Matching defs:mRemoteIndicator

98     private Drawable mRemoteIndicator;
327 if (mRemoteIndicator != null) {
329 mRemoteIndicator.setState(myDrawableState);
342 if (mRemoteIndicator != null) {
343 mRemoteIndicator.setCallback(null);
344 unscheduleDrawable(mRemoteIndicator);
355 mRemoteIndicator = d;
358 if (mAttachedToWindow && mRemoteIndicator != null
359 && mRemoteIndicator.getCurrent() instanceof AnimationDrawable) {
360 AnimationDrawable curDrawable = (AnimationDrawable) mRemoteIndicator.getCurrent();
376 return super.verifyDrawable(who) || who == mRemoteIndicator;
388 if (mRemoteIndicator != null) {
389 DrawableCompat.jumpToCurrentState(mRemoteIndicator);
397 if (mRemoteIndicator != null) {
398 mRemoteIndicator.setVisible(getVisibility() == VISIBLE, false);
430 final int width = Math.max(mMinWidth, mRemoteIndicator != null ?
431 mRemoteIndicator.getIntrinsicWidth() + getPaddingLeft() + getPaddingRight() : 0);
432 final int height = Math.max(mMinHeight, mRemoteIndicator != null ?
433 mRemoteIndicator.getIntrinsicHeight() + getPaddingTop() + getPaddingBottom() : 0);
470 if (mRemoteIndicator != null) {
476 final int drawWidth = mRemoteIndicator.getIntrinsicWidth();
477 final int drawHeight = mRemoteIndicator.getIntrinsicHeight();
481 mRemoteIndicator.setBounds(drawLeft, drawTop,
483 mRemoteIndicator.draw(canvas);
509 if (mRemoteIndicator != null
510 && mRemoteIndicator.getCurrent() instanceof AnimationDrawable) {
511 AnimationDrawable curDrawable = (AnimationDrawable) mRemoteIndicator.getCurrent();