안드로이드 타이틀바 없애기 (How to remove the title bar)
2014. 1. 26. 00:22ㆍPrograming/Android / Java
setContentView 이전에 아래 한줄만 추가해 주시면 됩니다.
requestWindowFeature(Window.FEATURE_NO_TITLE);
protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); requestWindowFeature(Window.FEATURE_NO_TITLE); setContentView(R.layout.activity_main); }
'Programing > Android / Java' 카테고리의 다른 글
안드로이드 인텐트로 SMS 보내기 (How to send SMS by using the Intent?) (0) | 2014.01.26 |
---|---|
안드로이드 3초 후 자동 화면전환 (How to change activity automatically?) (0) | 2014.01.26 |
인치를 센티미터롤 변환 (inch to cm) (0) | 2014.01.14 |
java.lang.illegalargumentexception - ContentResolver (0) | 2014.01.10 |
ADB로 Activity 관리하기 (0) | 2014.01.07 |