I am coding an app that implements Gestures and animation. I'm new in Android programming so I'm bumping into problems. What I want to do is play an animation when a gesture is performed. The problem is that I can't figure out why my code is not good. The app is closed unexpectedly at startup. This is the code:

public class MyAct extends Activity implements OnGesturePerformedListener {

private GestureLibrary gestlib;
     AnimationDrawable anim_obj;

/** Called when the activity is first created. */
@Override
publicvoid onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);

ImageView animation = (ImageView)findViewById(R.id.imgbk);
animation.setBackgroundResource(R.anim.anim);
anim_obj = (AnimationDrawable) animation.getBackground();

GestureOverlayView  view_main = new GestureOverlayView(this);
View extend = getLayoutInflater().inflate(R.layout.main,null);

view_main.addView(extend);
view_main.addOnGesturePerformedListener(this);

gestlib = GestureLibraries.fromRawResource(this, R.raw.gestures);

if(!gestlib.load())
        {
    finish();
    Toast.makeText(this, "Gesture Library resource could not be found!", Toast.LENGTH_SHORT);
        }


        setContentView(view_main);

    }

    publicvoid onGesturePerformed(GestureOverlayView overlay, Gesture gesture) 
    {
        ArrayList<Prediction> predict = gestlib.recognize(gesture);


        for(Prediction predictions : predict)
        {
            if(predictions.score> 1.0)
            {
                try
                {
                   anim_obj.start();

                }
                catch(Exception e)
                {
                    e.printStackTrace();

                }

            }


        }

    }


}

I guess the problem is the layout but I'm not experienced enough to figure out that by myself. If you guys can help and maybe show me the correct way to do this, I would be very grateful.Thanks!

link|improve this question
Can you post the exception, a logcat and or the line it is closing on? – Kaediil Dec 2 '11 at 14:50
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.