前端之家收集整理的这篇文章主要介绍了
避免在android项目中重复资源,
前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我在drawable
文件夹中有一些图像,并且它们在drawable-land中有横向版本.但是我想要共享一些风景图像,因为用不同的
名称复制
文件似乎是浪费.是否可以为其中一个重复
文件创建一个sym
链接(快捷方式)或其他
内容,以防止浪费空间
下面的文件夹说明因为我不善于解释自己:
/drawable
> image1.png
> image2.png
/drawable-land
>image1.png <-- This image
>image2.png <-- is identical to this file
Insead of image2.png你可以使用以下
内容定义image2.xml(显然,将它放在横向
文件夹中):
<bitmap xmlns:android="http://schemas.android.com/apk/res/android" android:src="@drawable/image1" />
原文链接:https://www.f2er.com/android/309337.html