eclipse安卓开发怎么更换图片
时间: 2024-01-23 21:49:09 浏览: 75
eclipse开发android环境搭建
1. 在res目录下创建一个drawable文件夹,命名为drawable-xhdpi(如果没有该文件夹)。
2. 把要替换的图片(比如icon.png)放到该文件夹下。
3. 在xml文件中引用该图片,比如:
```
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/icon"
/>
```
4. 可以在不同分辨率下使用不同的图片,把不同分辨率的图片放在不同的drawable文件夹下,比如:
```
drawable-ldpi //低分辨率
drawable-mdpi //中分辨率
drawable-hdpi //高分辨率
drawable-xhdpi //超高分辨率
drawable-xxhdpi //更高分辨率
drawable-xxxhdpi //最高分辨率
```
然后在xml文件中引用时,系统会自动根据当前设备的分辨率选择相应的图片,比如:
```
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/icon"
/>
```
阅读全文