在Android中添加圖片有以下幾種方法:
<ImageView
android:id="@+id/imageView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/image" />
其中@drawable/image指的是圖片的資源ID,可以在res/drawable文件夾中定義。
ImageView imageView = findViewById(R.id.imageView);
imageView.setImageResource(R.drawable.image);
其中R.drawable.image指的是圖片的資源ID。
ImageView imageView = findViewById(R.id.imageView);
Bitmap bitmap = BitmapFactory.decodeResource(getResources(), R.drawable.image);
imageView.setImageBitmap(bitmap);
其中R.drawable.image指的是圖片的資源ID。
ImageView imageView = findViewById(R.id.imageView);
Uri uri = Uri.parse("file:///sdcard/image.jpg");
imageView.setImageURI(uri);
其中file:///sdcard/image.jpg指的是圖片的文件路徑。
這些方法可根據需要選擇使用,根據圖片來源的不同,選擇對應的方法來添加圖片。