You cannot combine custom titles with other title features问题

最近接受一个老项目,把项目导进as(之前是eclipse)直接报You cannot combine custom titles with other title features,在网上找答案说是Theme不能用Theme.AppCompat的主题,这个主题自定义有一个title,而我的代码里面有个自定义title
//自定义标题
requestWindowFeature(Window.FEATURE_CUSTOM_TITLE);
setContentView(R.layout.main);
//设置标题为某个layout
getWindow().setFeatureInt(Window.FEATURE_CUSTOM_TITLE, R.layout.titlebar);

既然是Theme默认有个title那就直接去掉就好了如下:

<item name="android:windowActionBar">false</item>

<item name="android:windowNoTitle">true</item>

这样就没毛病了,

注意不是<item name="windowNoTitle">true</item>这个
先记录下来,估计没什么用,项目太老了

猜你喜欢

转载自blog.csdn.net/qq_39191116/article/details/79970863
今日推荐