今天在寫自定義标題欄的代碼出現了一下錯誤:“You cannot combine custom titles with other title feature”。這個問題在開發中還不是很常見。經過查資料和檢查自己的代碼發現,問題的原因在于:在我設定customtitlebar的activity中設定了“android:theme="@android:style/Theme.NoTitleBar.Fullscreen"屬性。與requestWindowFeature(Window.FEATURE_CUSTOM_TITLE);沖突,才産生了以上錯誤。隻要把設定NoTitleBar屬性去掉就可以解決問題喽。