之后调用 setContentView() 时出现此错误
requestWindowFeature(Window.FEATURE_CUSTOM_TITLE);
getWindow().setFeatureInt(Window.FEATURE_CUSTOM_TITLE, R.layout.maintitlebar);
代码在我的类的 onCreate() 中,它扩展了 ListActivity。我的清单 XML 文件显示了应用程序的默认 AppTheme:
android:theme="@style/AppTheme"
我已将styles.xml 更新为:
<resources>
<style name="AppTheme" parent="android:Theme.Light" >
<item name="android:windowNoTitle">true</item>
</style>
</resources>
这似乎与此错误消息上的主要帖子一致。我还清理了构建,但仍然收到上述错误消息。有人知道是什么导致了冲突吗?