我有一个图像视图&一个包含图像URL的数组。我必须遍历数组&每隔3秒后在图像视图中设置图像...在图像视图中的起始图像处,其URL位于数组的索引零处,然后在3秒后图像视图应在数组的索引1处显示图像,依此类推。请帮助
答案 0 :(得分:1)
使用它来定期更新您的imageview ...
Timer timer = null;
int i = 0;
imgView=(ImageView)findViewById(R.id.img);
timer = new Timer("TweetCollectorTimer");
timer.schedule(updateTask, 6000L, 3000L);//here 6000L is starting //delay and 3000L is periodic delay after starting delay
private TimerTask updateTask = new TimerTask() {
@Override
public void run() {
YourActivity.this.runOnUiThread(new Runnable() {
@Override
public void run() { // TODO Auto-generated method stub
imgView.setImageResource(photoAry[i]);
i++;
if (i > 5)
{
i = 0;
}
}
});
}
};
int photoAry[] = { R.drawable.photo1, R.drawable.photo2, R.drawable.photo3,
R.drawable.photo4, R.drawable.photo5, R.drawable.photo6 };
停止此操作,您可以致电
timer.cancel();
答案 1 :(得分:0)
尝试使用处理程序并将图像设置为处理程序代码中的imageView。
答案 2 :(得分:0)
您可以使用特定时间段的计时器,该计时器将在时间间隔后重复该功能。
你可以使用这样的代码:
ImageView img = (ImageView)findViewById(R.id.imageView1);
int delay = 0; // delay for 0 milliseconds.
int period = 25000; // repeat every 25 seconds.
Timer timer = new Timer();
timer.scheduleAtFixedRate(new SampleTimerTask(), delay, period);
public class SampleTimerTask extends TimerTask {
@Override
public void run() {
//MAKE YOUR LOGIC TO SET IMAGE TO IMAGEVIEW
img.setImageResource(R.drawable.ANYRANDOM);
}
}
希望它对你有用。
答案 3 :(得分:0)
您应该使用Handler's postDelayed
功能来达到此目的。它将使用指定的延迟on the main UI thread
运行您的代码,因此您将能够update UI controls
。
private int mInterval = 3000; // 3 seconds by default, can be changed later
private Handler mHandler;
@Override
protected void onCreate(Bundle bundle) {
...
mHandler = new Handler();
}
Runnable mStatusChecker = new Runnable() {
@Override
public void run() {
updateYourImageView(); //do whatever you want to do in this fuction.
mHandler.postDelayed(mStatusChecker, mInterval);
}
};
void startRepeatingTask() {
mStatusChecker.run();
}
void stopRepeatingTask() {
mHandler.removeCallbacks(mStatusChecker);
}