Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

When the phone is shaked it is supposed to display an animation. The animation works the first time but the next shake it wont do it. Everything else is working correctly because every time I shake it it display the new text each time. Its just the animation wont do it again after the first. I do have the animation set for oneshot but that shouldnt effect the animation from triggering again?

Here is the activity I'm working with this on. Followed by its xml layout.

public class Ask extends Activity{
    private SensorManager mSensorManager;
     private ShakeEventListener mSensorListener;
     @Override
        public void onCreate(Bundle savedInstanceState) {
            super.onCreate(savedInstanceState);
            setContentView(R.layout.ask);

            mSensorListener = new ShakeEventListener();
            mSensorManager = (SensorManager) getSystemService(Context.SENSOR_SERVICE);
            mSensorManager.registerListener(mSensorListener,
                mSensorManager.getDefaultSensor(Sensor.TYPE_ACCELEROMETER),
                SensorManager.SENSOR_DELAY_UI);
          final ImageView v = (ImageView)findViewById(R.id.talk); 


            mSensorListener.setOnShakeListener(new ShakeEventListener.OnShakeListener() {

              public void onShake() {
                  v.setBackgroundResource(R.anim.budtalk);
                  AnimationDrawable talking = (AnimationDrawable)v.getBackground();
                  talking.start();
              }
            });
        }

}




    <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:background="@drawable/page1"
    >

  <ImageView android:background="@drawable/page2ani1" android:layout_width="fill_parent" android:layout_height="fill_parent" android:id="@+id/talk"></ImageView>
</RelativeLayout>
share|improve this question
I do not know why it was being such a pain with posting the code up – steven Jul 12 '11 at 1:24
select the part which is code and press ctrl+k to make it better. – Binyamin Sharet Jul 12 '11 at 1:25
I'm having the same problem. Anything yet? – slipbull Sep 1 '11 at 12:07

1 Answer

Does this work?

final Animation ani = AnimationUtils.loadAnimation(this,R.anim.budtalk);
//later
v.startAnimation(ani);

This is how I have applied animations repeatedly to TextView elements.

Failing that, because you have changed the ImageView , perhaps you might need a v.postInvalidate() afterwards?

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.