避免在android项目中重复资源

时间:2010-08-25 18:14:27

标签: android image resources drawable

我的drawable文件夹中有一些图像,并且它们在drawable-land中有横向版本。但是我想要共享一些风景图像,因为用不同的名称复制文件似乎是浪费。是否可以为其中一个重复文件创建一个sym链接(快捷方式)或其他内容以防止浪费空间

下面的文件夹说明因为我不善于解释自己:

/drawable 
> image1.png
> image2.png 
/drawable-land
>image1.png  <-- This image
>image2.png  <-- is identical to this file

1 个答案:

答案 0 :(得分:10)

您可以使用以下内容定义image2.xml而不是image2.png(显然,将其放在横向文件夹中):

<bitmap xmlns:android="http://schemas.android.com/apk/res/android" android:src="@drawable/image1" />