I want to display around 150 frames in 5 sec ( 30fps) on Android imageview .All frames are stored in SdCard from there i loaded into Bitmap Arraylist . For ex iToD Arraylist of Bitmap mBitmap (Bitmap Object)
for (int i=0;i<100;i++){
mBitmap = iToD.get( i );
mImageView.setImageBitmap(mBitmap);
}
But its not able to render all frames i want it should able to render all frames .Giving me some kind of sliding effect.