blob: 78226c5f24d438571cee32051f6fbea81b956b7d [file] [log] [blame]
Joe Onorato503007d2010-04-16 09:20:55 -07001/*
2 * Copyright (C) 2008 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
Joe Onorato79de0c52010-05-26 17:03:26 -040017package com.android.systemui.statusbar;
Joe Onorato503007d2010-04-16 09:20:55 -070018
19import android.content.Context;
20import android.graphics.drawable.AnimationDrawable;
21import android.graphics.drawable.Drawable;
22import android.util.AttributeSet;
Joe Onorato1e7277e2010-09-29 14:21:06 -070023import android.util.Slog;
24import android.view.View;
Joe Onorato503007d2010-04-16 09:20:55 -070025import android.widget.ImageView;
26import android.widget.RemoteViews.RemoteView;
27
28@RemoteView
29public class AnimatedImageView extends ImageView {
30 AnimationDrawable mAnim;
31 boolean mAttached;
32
33 public AnimatedImageView(Context context) {
34 super(context);
35 }
36
37 public AnimatedImageView(Context context, AttributeSet attrs) {
38 super(context, attrs);
39 }
40
41 private void updateAnim() {
42 Drawable drawable = getDrawable();
43 if (mAttached && mAnim != null) {
44 mAnim.stop();
45 }
46 if (drawable instanceof AnimationDrawable) {
47 mAnim = (AnimationDrawable)drawable;
Joe Onorato1e7277e2010-09-29 14:21:06 -070048 if (isShown()) {
Joe Onorato503007d2010-04-16 09:20:55 -070049 mAnim.start();
50 }
51 } else {
52 mAnim = null;
53 }
54 }
55
56 @Override
57 public void setImageDrawable(Drawable drawable) {
58 super.setImageDrawable(drawable);
59 updateAnim();
60 }
61
62 @Override
63 @android.view.RemotableViewMethod
64 public void setImageResource(int resid) {
65 super.setImageResource(resid);
66 updateAnim();
67 }
68
69 @Override
70 public void onAttachedToWindow() {
71 super.onAttachedToWindow();
Joe Onorato503007d2010-04-16 09:20:55 -070072 mAttached = true;
Daniel Bateman258384a2012-08-13 20:39:49 -050073 updateAnim();
Joe Onorato503007d2010-04-16 09:20:55 -070074 }
75
76 @Override
77 public void onDetachedFromWindow() {
78 super.onDetachedFromWindow();
79 if (mAnim != null) {
80 mAnim.stop();
81 }
82 mAttached = false;
83 }
Joe Onorato1e7277e2010-09-29 14:21:06 -070084
85 @Override
86 protected void onVisibilityChanged(View changedView, int vis) {
87 super.onVisibilityChanged(changedView, vis);
88 if (mAnim != null) {
89 if (isShown()) {
90 mAnim.start();
91 } else {
92 mAnim.stop();
93 }
94 }
95 }
Joe Onorato503007d2010-04-16 09:20:55 -070096}
97