AnnimationDrawable не запускается! - PullRequest
1 голос
/ 04 июля 2011

Я пытался сделать аннотацию таким образом:

@Override
public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.main);
    startAnimation();
}

void startAnimation(){
    AnimationDrawable animDrawable = new AnimationDrawable();
    animDrawable.addFrame(getResources().getDrawable(R.drawable.wait_connextion_0),100);
    animDrawable.addFrame(getResources().getDrawable(R.drawable.wait_connextion_1), 100);
    animDrawable.addFrame(getResources().getDrawable(R.drawable.wait_connextion_2), 100);
    animDrawable.addFrame(getResources().getDrawable(R.drawable.wait_connextion_3), 100);

    animDrawable.setOneShot(false); 
    ImageView waitIV = (ImageView) findViewById(R.id.waitIV);
    waitIV.setBackgroundDrawable(animDrawable); 
    animDrawable.start();
}

, но она не работает, подскажите, пожалуйста, в чем проблема, пожалуйста :-(

...