Skip to content

Instantly share code, notes, and snippets.

View AnkitaKoladiya's full-sized avatar

AnkitaKoladiya AnkitaKoladiya

View GitHub Profile
@AnkitaKoladiya
AnkitaKoladiya / GetImageBitmap.java
Created May 22, 2017 17:12
Method for download image or get Bitmap from image url.
private class DownloadImage extends AsyncTask<String, Void, Bitmap> {
@Override
protected void onPreExecute() {
super.onPreExecute();
}
@Override
protected Bitmap doInBackground(String... URL) {