在Android布局中添加圖片有多種方式,以下是其中幾種常用的方法:
<ImageView
android:id="@+id/imageView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/image" />
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@drawable/image">
<!-- 布局內容 -->
</LinearLayout>
<ImageButton
android:id="@+id/imageButton"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/image" />
Bitmap bitmap = BitmapFactory.decodeResource(getResources(), R.drawable.image);
BitmapDrawable bitmapDrawable = new BitmapDrawable(getResources(), bitmap);
imageView.setImageDrawable(bitmapDrawable);
以上是常用的幾種添加圖片的方法,根據實際需求選擇合適的方式即可。