void setImageFileFromHttp( String strUrl ) {
    	URL url ;
		try {
			url = new URL( strUrl );
		} catch (MalformedURLException e) {
			// TODO 自動生成された catch ブロック
			e.printStackTrace();
			return ;
		}
    	InputStream input;
		try {
			input = url.openStream();
		} catch (IOException e) {
			// TODO 自動生成された catch ブロック
			e.printStackTrace();
			return ;
		}
    	Bitmap bitmap= BitmapFactory.decodeStream(input);
    	txtUrl.setText( strUrl );
    	// Androidだと、こんな感じでイメージのダウンロードが出来るのでした。
    	// 後は、ImageViewなら、そのままsetImageBitmapメソッドなどでイメージを設定できるはずです。
    	imgView.setImageBitmap(bitmap);

    }

Leave a Reply

You may use these HTML tags and attributes: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <s> <strike> <strong>

(required)

(required)

© 2024 Falco Tech Blog Suffusion theme by Sayontan Sinha