我已经在XML文件中的4个imageview上设置了图像,现在单击按钮,我想更改所有4个imageview的图像。点击按钮5秒钟后,所有图像应更改为原始图像。
答案 0 :(得分:2)
您可以使用以下线程来实现此目的:
OnClick(View view){
//change the images of all images view
new Handler().postDelayed(new Runnable() {
@Override
public void run() {
//change the images for all images view to previous ones
}
}, 5000);
}