Android暂停图像



大家好我用它来显示屏幕上的图像

 ImageView myImageView = (ImageView)findViewById(R.id.imageview);
        myImageView.setImageBitmap(bitmap);

和this

<ImageView
  android:id="@+id/imageview"
  android:layout_gravity="center"
  android:layout_width="fill_parent"
  android:layout_height="fill_parent"
  android:scaleType="center"
  />

我的问题是如何使它暂停几秒钟然后切换到下一个图像就像幻灯片一样....

谢谢

实现一个Handler。下面是关于从计时器

更新UI的更多内容

最新更新