[Android] 타이틀 제목 없애기
- 코딩/Android
- 2020. 3. 25.
AndroidManifest.xml 부분의
<application
android:usesCleartextTraffic="true"
android:allowBackup="true"
android:roundIcon="@mipmap/ic_launcher_new_round"
android:supportsRtl="true"
android:theme="@style/Theme.AppCompat.NoActionBar"
android:hardwareAccelerated="true">
위와 같이 된 코드를 볼 수 있는데 theme 부분을 "@style/Theme.AppCompat.NoActionBar" 으로
변경을 해주시면 안드로이드 앱의 상단 부분 제목 부분이 사라지게 됩니다.
Six 부분이 사라지게 됩니다.
'코딩 > Android' 카테고리의 다른 글
[Android] 안드로이드 스튜디오 버튼으로 Toast(토스트) 예제 (0) | 2020.03.27 |
---|---|
[Android]안드로이드 스튜디오 버튼으로 text 보내기 (0) | 2020.03.26 |
[Android]안드로이드 스튜디오 image(이미지) 출력해보기 (0) | 2020.03.24 |
[Android]안드로이드 스튜디오 BUTTON LISTNER 버튼과 리스너 (0) | 2020.03.23 |
[Android]안드로이드 스튜디오Layout(레이아웃) 나누기 (0) | 2020.03.22 |