在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);
首先需要在項(xiàng)目的build.gradle文件中添加Picasso庫(kù)的依賴:
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);
首先需要在項(xiàng)目的build.gradle文件中添加Glide庫(kù)的依賴:
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中顯示圖片的一些常用方法,你可以根據(jù)自己的需求選擇合適的方法。