解决 No resource found that matches the given name (at 'icon' with value '@drawable/icon') 问题

时间:2024-01-16 23:47:38

对新解决方案Xamarin的Android项目在项目属性

解决 No resource found that matches the given name (at 'icon' with value '@drawable/icon') 问题

换图标后 会出现 No resource found that matches the given name (at 'icon' with value '@drawable/icon'). 错误

解决方法是

修改 包含 MainLauncher = true 的 Activity

    [Activity(Label = "LayoutTest", MainLauncher = true, Icon ="@drawable/icon")]// "@drawable/icon")]
public class MainActivity : Activity
{
}

注意无论你的icon.png图片在drawable,drawable-ldpi,drawable-mdpi,drawable-hdpi或者在项目下(文件生成操作为:内容,非AndroidResource)

都是

Icon ="@drawable/icon" 目前此方法运行正常,由于初学更深的原理不知