1. 程式人生 > >You cannot combine custom titles with other title features問題

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>這個
先記錄下來,估計沒什麼用,專案太老了