要使用Glide从URL加载.jpg文件,需要确保添加了Glide的依赖库。你可以按照以下步骤解决问题:
dependencies {
implementation 'com.github.bumptech.glide:glide:4.11.0'
annotationProcessor 'com.github.bumptech.glide:compiler:4.11.0'
}
load()
方法加载图片,并指定图片的 URL。例如:ImageView imageView = findViewById(R.id.imageView);
String imageUrl = "https://example.com/image.jpg";
Glide.with(this)
.load(imageUrl)
.into(imageView);
请确保将 "imageView" 替换为你项目中的 ImageView 组件的 ID。
这样就可以在 Android 中使用 Glide 加载网络上的 .jpg 文件了。如果仍然无法加载图片,请确保你的网络连接正常,并且图片的 URL 是有效的。
希望这能帮助到你!