• Android用ImageView显示本地和网上的图片


    Android用ImageView显示本地和网上的图片

    使用方法

    GetBitMap.getHttpBitmap(imgUrl, new GetBitMap.Callback() {
      @Override
      public void onSuccess(Bitmap bitmap) {
        imageView.setImageBitmap(bitmap);
      }
    });
    

    源码

    public class GetBitMap {
    
      public static Bitmap getLoacalBitmap(String url) {
        try {
          FileInputStream fis = new FileInputStream(url);
          return BitmapFactory.decodeStream(fis);
        } catch (FileNotFoundException e) {
          e.printStackTrace();
          return null;
        }
      }
    
      public static void getHttpBitmap(String url,Callback callback) {
        @SuppressLint("HandlerLeak") Handler handler = new Handler(){
          @Override
          public void handleMessage(@NonNull Message msg) {
            super.handleMessage(msg);
            callback.onSuccess((Bitmap) msg.obj);
          }
        };
        new Thread(new Runnable() {
          @Override
          public void run() {
            URL myFileUrl = null;
            Bitmap bitmap = null;
            try {
              Log.d(TAG, url);
              myFileUrl = new URL(url);
            } catch (MalformedURLException e) {
              e.printStackTrace();
            }
            try {
              HttpURLConnection conn = (HttpURLConnection) myFileUrl.openConnection();
              conn.setConnectTimeout(3000);
              conn.setDoInput(true);
              conn.connect();
              InputStream is = conn.getInputStream();
              bitmap = BitmapFactory.decodeStream(is);
              is.close();
            } catch (IOException e) {
              e.printStackTrace();
            }
            Message message = new Message();
            message.obj = bitmap;
            handler.sendMessage(message);
          }
        }).start();
      }
    
      public interface Callback{
        void onSuccess(Bitmap bitmap);
      }
    }
    

    参考连接

    Android用ImageView显示本地和网上的图片

  • 相关阅读:
    ASP.NET Core 中的 Razor Pages 介绍
    使用postman测试.net webservice接口
    vue.js页面打印window.print
    缓存策略汇总
    解决w3wp.exe内存占用过高的方法
    SqlServer 分库分表
    webform 回发或回调参数无效
    delphi unix时间戳 10位 13位 转换
    nt路径转dos windows路径
    PHP在linux下 连接MSSQL
  • 原文地址:https://www.cnblogs.com/guhunjun/p/android-imgview.html
Copyright © 2020-2023  润新知