如何修复"在'android'"包'中找不到属性'style'的资源标识符?

时间:2017-03-08 14:46:17

标签: android

我创建了一个样式并将其应用于按钮,但是当我尝试构建时,我得到了异常:

No resource identifier found for attribute ‘style’ in package ‘android’

这是按钮的代码:

<Button
            android:text="Settings"
            android:style="@style/SecondaryButton"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:id="@+id/settingsButton"
            android:layout_weight="0" />

可能出现什么问题?

1 个答案:

答案 0 :(得分:10)

问题是样式标记不需要android包命名空间,即使许多IDE会建议正确。所以而不是:

android:style="@style/SecondaryButton"

使用:

style="@style/SecondaryButton"