大家好 我用这个来显示屏幕上的图像
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"
/>
我的问题是如何让它暂停几秒钟然后切换到下一张图像 喜欢幻灯片....
谢谢