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


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

换图标后 会出现 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" 目前此方法运行正常,由于初学更深的原理不知


免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM