Back to project page advanced-textview.
The source code is released under:
Apache License
If you think the Android project advanced-textview listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.sqisland.android.advanced_textview; /*from www.j a va2s . co m*/ import android.app.Activity; import android.graphics.drawable.Animatable; import android.graphics.drawable.Drawable; import android.os.Bundle; import android.widget.TextView; public class AnimatedCompoundDrawableActivity extends Activity { private TextView textView; private enum Operation { START, STOP } @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_animated_compound_drawable); textView = (TextView) findViewById(R.id.text); } @Override protected void onStart() { super.onStart(); changeAnimation(Operation.START); } @Override protected void onStop() { super.onStop(); changeAnimation(Operation.STOP); } private void changeAnimation(Operation operation) { Drawable[] drawables = textView.getCompoundDrawables(); for (Drawable drawable : drawables) { if (drawable != null && drawable instanceof Animatable) { Animatable animatable = ((Animatable) drawable); switch (operation) { case START: animatable.start(); break; case STOP: animatable.stop(); break; } } } } }