以下是使用OkHttp和Picasso的示例代码,可解决此问题:
implementation 'com.squareup.okhttp3:okhttp:3.12.12'
OkHttpClient client = new OkHttpClient();
Picasso picasso = new Picasso.Builder(context) .downloader(new OkHttp3Downloader(client)) .build();
4.使用picasso实例加载图片:
picasso.load("http://192.168.0.100/image.jpg").into(imageView);
请注意,您需要'http://192.168.0.100/image.jpg”替换为您要加载的实际URL。