我正在使用Xamarin在Android上开发启动画面。我有一张名为“splash1.jpg”的图片放在我的各种可绘制子文件夹中,其中包含子文件夹“splash”。因此,例如,我有一个“resources / drawable-hdpi / splash / splash1.jpg”和一个“resources / drawable-mdpi / splash / splash1.jpg”。
在我的main.axml布局中,我有一行imageview源
机器人:SRC = “@绘制/防溅/ splash1”
以下行在我的resources.cs文件中自动生成
public const int splash / splash1 = 2130837505;
splash / slash1 const name中的斜杠出错,导致编译时出现多个错误。
当drawable中的文件位于drawable文件夹的子目录中时,我该如何引用它?
感谢。
答案 0 :(得分:1)
Android 不支持支持/drawable
个文件夹中的子文件夹。
请删除/splash
文件夹,并将splash
图片直接放在/drawable
文件夹中。
获取更多信息here。