public class WebImageParse extends Activity {
ImageView imView;
String imageUrl = "이미지url"; // 이미지를 파싱해올 URL
Bitmap bmImg; // 비트맵을처리할 변수를 생성합니다.

/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);

downloadFile(imageUrl + ".png"); //이미지를 다운로드 이 부분을 추가하니까 에러가 나네요 ㅠ

imView = (ImageView) findViewById(R.id.imview); // 이미지를 읽어들일 이미지뷰를
// 연결해줍니다.

}

// 이미지를 다운로드하는 함수입니다. 파라미터는 String형
// fileUrl 이 들어갑니다.
void downloadFile(String fileUrl) {
URL myFileUrl = null; // URL 타입의 myFileUrl을 NULL로 초기화 시켜줍니다.

try {
myFileUrl = new URL(fileUrl); // 파라미터로 넘어온 Url을 myFileUrl에 대입합니다.

} catch (MalformedURLException e) // 예외처리를 해줍니다.
{
// Todo Auto-generated catch block
e.printStackTrace();
}
try {
// 실질적인 통신이 이루어지는 부분입니다.
// myFileUrl 로 접속을 시도합니다.
HttpURLConnection conn = (HttpURLConnection) myFileUrl
.openConnection();
conn.setDoInput(true);
conn.connect();
// int length = conn.getContentLength(); // 받아온 컨텐츠의 길이를 length 변수에
// 저장합니다.
InputStream is = conn.getInputStream(); // InputStream is 변수에 받아온
// InputStream을 저장합니다.

bmImg = BitmapFactory.decodeStream(is); // 받아온 이미지를 bmImg에 넣어둡니다.
imView.setImageBitmap(bmImg); // imView에 이미지를 셋팅합니다.
} catch (IOException e) // 예외처리를 해줍니다.
{
e.printStackTrace();
}
}
}





이미지를 연속으로 계속 받아오게하는 어플을 만들려고합니다~
버튼을 넣어서 이미지를 한장만 받아오게 하는건 잘 되는데
연속으로 계속 이미지를 받아오게하려고(애니메이션처럼) 하는데 잘 안되네요 ㅠ 
고수님들의 도움이 필요합니다 ㅠ