さまざまな画像のカスタマイズされたアニメーション スライドショーをセットアップしようとしています。カスタマイズされたビューを使用して、単一の画像のアニメーションを設定することができました。ここで、arraylist 内のすべての画像のスライド ショーをセットアップしたいと考えています。画像が次々に表示されるように、現在、カスタマイズされたビューが 1 つありますが、各画像に対してさらにビューを作成する必要がありますか? 何か案は?
カスタマイズされたビュー:
public class AnimationPhotoViewA extends ImageView
{
@Overridepublic void setImageBitmap(Bitmap bm)
{super.setImageBitmap(bm);image= bm;}
アクティビティ:
public class PhotoSyncActivity extends Activity implements AnimationListener {
@Override
protected void onCreate(Bundle savedInstanceState) {super.onCreate(savedInstanceState);
setContentView(R.layout.photo_sync_screen);
ArrayList<String> photoPaths = new ArrayList<String>();
photoPaths = getAllPhotos(Environment.getExternalStorageDirectory(),
photoPaths);
images = new Bitmap[photoPaths.size()];
Log.v(ACCESSIBILITY_SERVICE, "photo array!" + photoPaths);
apa1 = (AnimationPhotoViewA) findViewById(R.id.animation_viewA);
//START ANIMATION
animationmove = PhotoAnimationProcess.moveOne(this,apa1,animationmove);
File imgFile = new File(photoPaths.get(0));
if (imgFile.exists())
{
images[0] = decodeFile(imgFile);
}
}
@Override
protected void onStart() {
// TODO Auto-generated method stub
super.onStart();
// SET IMAGE IN THE VIEW
apa1.setImageBitmap(resizedimage);
}
private void addPicture() {
// TODO Auto-generated method stub
}
public void onAnimationStart(Animation animation)
{
// TODO Auto-generated method stub
}
public void onAnimationEnd(Animation animation)
{
// TODO Auto-generated method stub
switch (animationmove)
{
case move1:
animationmove = PhotoAnimationProcess.moveOne(this, apa1, animationmove);
break;
case move2:
addPicture();
animationmove = PhotoAnimationProcess.moveTwo(this,apa1,animationmove);
break;
case move3:
animationmove = PhotoAnimationProcess.moveThree(this,apa1,animationmove);
break;
case move4:
animationmove = PhotoAnimationProcess.moveFour(this,apa1,animationmove);;
break;
case move5:
animationmove = PhotoAnimationProcess.moveFive(this,apa1,animationmove);
break;
default:
break;
}
Log.v(ALARM_SERVICE, "Animation Type" + animation.toString());
}
public void onAnimationRepeat(Animation animation) {
// TODO Auto-generated method stub
}
}