android 引用图片
时间: 2023-06-18 18:06:04 浏览: 96
在 Android 中引用图片,可以按照以下步骤进行操作:
1. 将图片文件放到 Android 项目的 "res" 目录下的相应文件夹中,如 "drawable" 或 "mipmap" 文件夹。
2. 在 XML 中使用 ImageView 控件来显示图片,例如:
```xml
<ImageView
android:id="@+id/my_image"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/my_image_file" />
```
其中,"@drawable/my_image_file" 表示引用 "drawable" 文件夹下名为 "my_image_file" 的图片文件。
3. 在 Java 代码中获取 ImageView 控件并设置图片,例如:
```java
ImageView myImage = (ImageView) findViewById(R.id.my_image);
myImage.setImageResource(R.drawable.my_image_file);
```
其中,"R.drawable.my_image_file" 表示引用 "drawable" 文件夹下名为 "my_image_file" 的图片文件。
阅读全文