xamarin android error APT0000:资源``与配置''重复的值

时间:2019-11-16 15:23:07

标签: android xamarin build

我正在将Xamarin Android与Visual Studio一起使用。在更新Visual Studio和xamarin之前,我的两个项目都没有错误构建。

我收到错误 错误APT0000:配置'的资源'styleable / custom_button'的重复值。 错误APT0000:先前在此处定义的资源。 ...

我有16.3.9版和xamarin android 10.0.6.2

Project进行测试

感谢您的帮助。

1 个答案:

答案 0 :(得分:0)

  

APT0000:资源'styleable / custom_button'与配置''的重复值。错误APT0000:先前在此处定义的资源

enter image description here 错误是由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"/>

解决方案: 您可以更改名称。使用其他名称,可以。

enter image description here