저는 항상 전체 화면 및 제목 표시 줄없이 실행되는 응용 프로그램을 구현하고 있습니다. 사용자가 버튼을 클릭하고 음성 인식 기능 API를 사용하는 경우가 있습니다. 안드로이드 네이티브 창은 사용자의 목소리를 분석하기 위해 호출됩니다. 그런 다음 제목 표시 줄이 다시 표시됩니다. 문제는 숨기기위한 메서드가 onCreate 메서드에서 작동하기 때문에 다시 숨길 수 없다는 것입니다.onCreate 메서드 외부에서 Android 제목 표시 줄을 숨길 수 없습니다.
여기는 음성 API를 호출하고 제목 표시 줄이 다시 표시되는 방법입니다.
public void VoiceCaptureButtonClick(View v) {
//- The title bar is properly hidden at this point.
//Code for calling the voice recognition API:
Intent intent = new Intent(RecognizerIntent.ACTION_RECOGNIZE_SPEECH);
intent.putExtra(RecognizerIntent.EXTRA_LANGUAGE_MODEL, RecognizerIntent.LANGUAGE_MODEL_FREE_FORM);
intent.putExtra(RecognizerIntent.EXTRA_PROMPT, "Voice recognition Demo...");
startActivityForResult(intent, REQUEST_CODE);
//- Now the title bar is visible again, and I don't manage to hide it anymore.
// if I use the method requestWindowFeature(Window.FEATURE_NO_TITLE);
// I run into a exception : "requestFeature() must be called before adding content"
}
편집 :
다음은 점 때까지 위의 메소드를 호출, 내가 제목 표시 줄을 숨기고 응용 프로그램 전체 화면, 완벽하게 작동 을 만들기 위해 사용하고 코드입니다.
<application
...
android:theme="@android:style/Theme.NoTitleBar.Fullscreen"
...
</application>
저는 Android 2.3.3과 Eclipse를 사용하고 있습니다.