android studio如何加载图片
时间: 2023-09-15 16:23:08 浏览: 88
在Android Studio中加载图片有多种方法,其中一种比较常用的是使用ImageView组件。以下是一些步骤:
1. 将图片放在res/drawable文件夹中。
2. 在xml布局文件中使用ImageView组件。
3. 为ImageView组件设置android:src属性,该属性指定需要显示的图片路径。
例如,如果你想在ImageView中显示名为image.png的图片,你需要添加以下代码片段到xml布局文件中:
```
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/image" />
```
注意,@drawable/image的image应该是你想要显示的图片文件名,不包含扩展名。
阅读全文