在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);
以上是常用的几种添加图片的方法,根据实际需求选择合适的方式即可。