在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);
Bitmap bitmap = BitmapFactory.decodeResource(getResources(), R.drawable.image);
imageView.setImageBitmap(bitmap);
ImageView imageView = findViewById(R.id.imageView);
Glide.with(this)
.load("https://example.com/image.jpg")
.into(imageView);
以上是在Android中显示图片的几种常见方式。根据具体的需求和场景选择合适的方法来显示图片。
领取专属 10元无门槛券
手把手带您无忧上云