在android中使用自己定义的标题时遇到此问题。
requestWindowFeature(Window.FEATURE_CUSTOM_TITLE);
setContentView(R.layout.activity_main);
getWindow().setFeatureInt(Window.FEATURE_CUSTOM_TITLE, R.layout.titlebar);
解决办法:
在styles.xml中添加下面的红色语句,用来屏蔽系统默认标题。
<style name="AppTheme" parent="AppBaseTheme">
<!-- All customizations that are NOT specific to a particular API-level can go here. -->
<item name="android:windowActionBar">false</item>
</style>
此文参考:http://stackoverflow.com/questions/18494369/you-cannot-combine-custom-titles-with-other-features
很不错的一个网站。