4
我最近決定開始在我的應用程序中使用「材料設計」。編譯過程中收到此錯誤:材料設計主題錯誤
Error:(12, 22) No resource found that matches the given name: attr 'windowNoTitle'.
下面它指向這個styles.xml
<resources>
<!--
Base application theme, dependent on API level. This theme is replaced
by AppBaseTheme from res/values-vXX/styles.xml on newer devices.
-->
<style name="MyMaterialTheme" parent="MyMaterialTheme.Base">
</style>
<style name="MyMaterialTheme.Base" parent="Theme.AppCompat">
<item name="windowNoTitle">true</item>
<item name="windowActionBar">false</item>
<item name="colorPrimary">@color/colorPrimary</item>
<item name="colorPrimaryDark">@color/colorPrimaryDark</item>
<item name="colorAccent">@color/colorAccent</item>
</style>
你應該使用'android:windowNoTitle'。 – natario
爲什麼不使用'Theme.AppCompat.NoActionBar'?它爲你做到了這一點。 – ianhanniballake