컨텐츠를 추가하기 전에 requestFeature ()를 호출해야합니다. 맞춤 제목 표시 줄을 구현하려고합니다. 내 도우미 클래스는 다음과 같습니다. import android.app.Activity; import android.view.Window; public class UIHelper { public static void setupTitleBar(Activity c) { final boolean customTitleSupported = c.requestWindowFeature(Window.FEATURE_CUSTOM_TITLE); c.setContentView(R.layout.main); if (customTitleSupported) { c.getWindow().setFeatureInt(Window...