在android stdio插入图片
时间: 2023-09-07 15:15:34 浏览: 136
Android的图片添加
在 Android Studio 中插入图片可以按照以下步骤进行:
1. 将图片文件保存到项目中的 `drawable` 文件夹中。
2. 在布局文件中使用 `ImageView` 控件来展示图片。例如:
```
<ImageView
android:id="@+id/imageView"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:src="@drawable/image_file_name" />
```
其中 `image_file_name` 是图片文件的名称,不需要包含文件扩展名。
3. 在 Java 代码中使用 `findViewById()` 方法获取 `ImageView` 控件,并设置图片。例如:
```
ImageView imageView = findViewById(R.id.imageView);
imageView.setImageResource(R.drawable.image_file_name);
```
同样地,`image_file_name` 是图片文件的名称。
阅读全文