android暂停一个图像

时间:2011-04-11 13:13:47

标签: android image slideshow

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

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

和这个

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

我的问题是如何让它暂停几秒钟然后切换到下一张图像 喜欢幻灯片....

谢谢

1 个答案:

答案 0 :(得分:0)

实施Handler。以下是有关更新UI from a timer

的更多信息