how to show progressbar while loading image in each imageview. I have tried the code given below
if (stage1ImageURL.startsWith("http://")) {
//Picasso.with(getActivity()).load(stage1ImageURL).into(stage1ImageView);
//imageLoader.DisplayImage((stage1ImageURL), stage1ImageView);
Picasso.with(getActivity())
.load(stage1ImageURL)
.into(stage1ImageView , new Callback() {
@Override
public void onSuccess() {
// TODO Auto-generated method stub
progressBar.setVisibility(View.GONE);
}
@Override
public void onError() {
// TODO Auto-generated method stub
}
});
}