每5秒钟我必须从我的画廊更换图片。谁能告诉我怎么做? 这是我的代码的一部分:
private final Integer[] mImage = { R.drawable.picture, R.drawable.picture_1 };
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.gallery);
final Gallery g = (Gallery) findViewById(R.id.Gallery01);
g.setAdapter(new ImageAdapter(this));
}`
答案 0 :(得分:0)
我的第一直觉是建议您调查如何使用AsyncTask,但我相信更好的选择是使用postDelayed()方法延迟5秒,并使用更新图像和帖子的runnable下一次延迟更新(如果应用程序仍处于活动状态)。