requestWindowFeature(Window.FEATURE_CUSTOM_TITLE);

에서 에러를 뿜습니다.


매니페스트에 @android:style/Theme.NoTitleBar 도 해봤습니다.

themes.xml을 만들어서

<item name="android:windowNoTitle">true</item> 도 해봤습니다.



boolean isCustomTitle = requestWindowFeature(Window.FEATURE_CUSTOM_TITLE);

setContentView(R.layout.splash_layout);

if (isCustomTitle) {

BDGlobalMethod.setTitle(R.string.app_name, this);

}


분명 setContentView(R.layout.splash_layout); 이전에 요청을 하고 있구요.


그냥 Activity를 상속받아서 사용중입니다.


04-05 16:44:17.566: E/AndroidRuntime(21084): Caused by: android.util.AndroidRuntimeException: You cannot combine custom titles with other title features


에러메세지로 검색을 해봐도 당최 답이 안나오네요 ㅠ

정말 오늘 안드로이드가 저랑 싸우자는 것인지 참....ㅠ

lifecluee@gmail.com