我正在将Xamarin Android与Visual Studio一起使用。在更新Visual Studio和xamarin之前,我的两个项目都没有错误构建。
我收到错误 错误APT0000:配置'的资源'styleable / custom_button'的重复值。 错误APT0000:先前在此处定义的资源。 ...
我有16.3.9版和xamarin android 10.0.6.2
Project进行测试
感谢您的帮助。
答案 0 :(得分:0)
APT0000:资源'styleable / custom_button'与配置''的重复值。错误APT0000:先前在此处定义的资源
错误是由declare-styleable
中的相同名称引起的。双击错误,可以打开attrs.xml
文件。
<declare-styleable name="custom_button">
<attr name="id_expandable_layout" format="reference"/>
</declare-styleable>
<declare-styleable name="custom_button">
<attr name="ascbackground" format="reference"/>
解决方案: 您可以更改名称。使用其他名称,可以。