在Android中,显示图片有多种方法,以下是其中一些常用的方法:
<ImageView
android:id="@+id/imageView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/image" />
ImageView imageView = findViewById(R.id.imageView);
imageView.setImageResource(R.drawable.image);
首先需要在项目的build.gradle文件中添加Picasso库的依赖:
implementation 'com.squareup.picasso:picasso:2.71828'
然后可以使用Picasso的API加载图片:
ImageView imageView = findViewById(R.id.imageView);
Picasso.get().load("http://example.com/image.jpg").into(imageView);
首先需要在项目的build.gradle文件中添加Glide库的依赖:
implementation 'com.github.bumptech.glide:glide:4.12.0'
annotationProcessor 'com.github.bumptech.glide:compiler:4.12.0'
然后可以使用Glide的API加载图片:
ImageView imageView = findViewById(R.id.imageView);
Glide.with(this).load("http://example.com/image.jpg").into(imageView);
这些是Android中显示图片的一些常用方法,你可以根据自己的需求选择合适的方法。
辰迅云「云服务器」,即开即用、新一代英特尔至强铂金CPU、三副本存储NVMe SSD云盘,价格低至29元/月。点击查看>>
推荐阅读: android日志输出到文件的方法是什么