728x90
private static Bitmap getBitmapFromURL(String src) {
try {
URL url = new URL(src);
HttpURLConnection connection = (HttpURLConnection) url.openConnection();
connection.setDoInput(true);
connection.connect();
InputStream input = connection.getInputStream();
Bitmap myBitmap = BitmapFactory.decodeStream(input);
return myBitmap;
} catch (IOException e) {
e.printStackTrace();
return null;
}
}
728x90
'프로그래밍 > Android(Java)' 카테고리의 다른 글
[Android] 앱 내에서 언어 설정 변경하는 창 띄우기 (0) | 2019.09.29 |
---|---|
[Android] Geocoder의 Address 리턴값 (0) | 2019.09.29 |
[Android] 구글맵에서 화면에 보이는 부분 범위 구하는 방법 (0) | 2019.09.29 |
[Android] EditText 완료 버튼 리스너 달기 (0) | 2019.09.29 |
[Android] Bitmap을 Drawable로 바꾸는 방법 (0) | 2019.09.29 |
댓글