sql >> Databáze >  >> Database Tools >> phpMyAdmin

Android studio Načtěte adresu URL obrázku do zobrazení seznamu

Měl jsem stejný problém. Vyřešil jsem to pomocí AsyncTask, který stahuje bitmapy.

Použil jsem tento kód:

class ImageDownloaderTask extends AsyncTask<String, Void, Bitmap> {

    private final WeakReference<ImageView> imageViewReference;

    public ImageDownloaderTask(ImageView imageView) {
        imageViewReference = new WeakReference<ImageView>(imageView);
    }

    @Override
    protected Bitmap doInBackground(String... params) {
        return downloadBitmap(params[0]);
    }

    @Override
    protected void onPostExecute(Bitmap bitmap) {
        if (isCancelled()) {
            bitmap = null;
        }

        if (imageViewReference != null) {
            ImageView imageView = imageViewReference.get();
            if (imageView != null) {
                if (bitmap != null) {
                    imageView.setImageBitmap(bitmap);
                } else {
                    Drawable placeholder = null;
                    imageView.setImageDrawable(placeholder);
                }
            }
        }
    }

    private Bitmap downloadBitmap(String url) {
        HttpURLConnection urlConnection = null;
        try {
            URL uri = new URL(url);
            urlConnection = (HttpURLConnection) uri.openConnection();

            final int responseCode = urlConnection.getResponseCode();
            if (responseCode != HttpURLConnection.HTTP_OK) {
                return null;
            }

            InputStream inputStream = urlConnection.getInputStream();
            if (inputStream != null) {
                Bitmap bitmap = BitmapFactory.decodeStream(inputStream);
                return bitmap;
            }
        } catch (Exception e) {
            urlConnection.disconnect();
            Log.w("ImageDownloader", "Errore durante il download da " + url);
        } finally {
            if (urlConnection != null) {
                urlConnection.disconnect();
            }
        }
        return null;
    }
}

nazýváte to:

new ImageDownloaderTask(holder.imageView).execute(urlPhoto);

Doufám, že to pomůže :)



  1. phpmyadmin.pma_table_uiprefs neexistuje

  2. CHYBA Mysql:ASCII '\0' při importu souboru SQL na linuxový server

  3. Přidání omezení v phpMyAdmin

  4. SQL dotaz nefunguje na phpMyAdmin, protože dostávám chybu