溫馨提示×

android添加圖片的方法是什么

小億
309
2023-12-23 11:03:14
欄目: 編程語言

在Android中添加圖片有以下幾種方法:

  1. 在布局文件中使用ImageView控件,并設置src屬性為圖片的資源ID或者圖片的URL。例如:
<ImageView
    android:id="@+id/imageView"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:src="@drawable/image" />

其中@drawable/image指的是圖片的資源ID,可以在res/drawable文件夾中定義。

  1. 在代碼中使用ImageView控件,并調用setImageResource()方法設置圖片的資源ID。例如:
ImageView imageView = findViewById(R.id.imageView);
imageView.setImageResource(R.drawable.image);

其中R.drawable.image指的是圖片的資源ID。

  1. 在代碼中使用ImageView控件,并調用setImageBitmap()方法設置圖片的Bitmap對象。例如:
ImageView imageView = findViewById(R.id.imageView);
Bitmap bitmap = BitmapFactory.decodeResource(getResources(), R.drawable.image);
imageView.setImageBitmap(bitmap);

其中R.drawable.image指的是圖片的資源ID。

  1. 在代碼中使用ImageView控件,并調用setImageURI()方法設置圖片的URI對象。例如:
ImageView imageView = findViewById(R.id.imageView);
Uri uri = Uri.parse("file:///sdcard/image.jpg");
imageView.setImageURI(uri);

其中file:///sdcard/image.jpg指的是圖片的文件路徑。

這些方法可根據需要選擇使用,根據圖片來源的不同,選擇對應的方法來添加圖片。

0