안드로이드 상단 회색(그레이) 색상 타이틀바 없애기 또는 레이블 넣기

2018. 1. 17. 19:47 안드로이드/레이아웃(Layout)

AndroidManifest.xml 파일에 


<activity android:name=".Main" android:theme="@android:style/Theme.NoTitleBar" android:screenOrientation="portrait" />



또는


Java 파일에서 onCreate 부분에

equestWindowFeature(Window.FEATURE_NO_TITLE);

추가해준다.



타이틀바에 label 을 넣으려면

Manifest.xml 파일에 android:label="설명"