Dev::Android

Activity 타이틀바 제거

bluemong 2013. 9. 27. 20:39
반응형

onCreate에 아래 코드 추가


// Activity 타이틀바 제거

this.requestWindowFeature(Window.FEATURE_NO_TITLE);


// Phone Notification Bar 제거

// this.getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN, WindowManager.LayoutParams.FLAG_FULLSCREEN);


'Dev::Android' 카테고리의 다른 글

키보드 완료/확인/다음 버튼에 이벤트 설정  (0) 2013.10.07
Activity 시작 시 키보드 표시  (0) 2013.10.07
Activity 전환  (0) 2013.09.27
Vibrator.vibrate  (0) 2013.08.08
Android font italic textstyle  (0) 2013.07.29