Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | ||||
4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 | 12 | 13 | 14 | 15 | 16 | 17 |
18 | 19 | 20 | 21 | 22 | 23 | 24 |
25 | 26 | 27 | 28 | 29 | 30 | 31 |
Tags
- STS
- MANTIS
- Maven
- Java
- Bootstrap
- WebView
- 컬럼명
- SpringSource Tool Suite
- Redirect
- Web Service
- 이클립스
- Android
- MSsql
- decompiler
- jsp
- 자바
- 웹 서비스
- asp.net
- C#
- Apache Lucene
- varags
- TextBox
- 안드로이드
- Eclipse
- MS-SQL
- 웹뷰
- scrollView
- javascript
- 자바스크립트
- html
Archives
- Today
- Total
목록2015/10/02 (1)
bboks.net™
이미지를 url을 통해 load 하기
1. 이미지를 load하는 asynctask 추가 private class DownloadImageTask extends AsyncTask { ImageView bmImage; public DownloadImageTask(ImageView bmImage) { this.bmImage = bmImage; } protected Bitmap doInBackground(String... urls) { String urldisplay = urls[0]; Bitmap mIcon11 = null; try { InputStream in = new java.net.URL(urldisplay).openStream(); mIcon11 = BitmapFactory.decodeStream(in); } catch (Exceptio..
Mobile Programming/Android
2015. 10. 2. 09:17