안드로이드 개발하다보면 AppBar가 굉장히 거슬리고 안이쁘다...
하지만 이것을 단 2줄만 추가하면 없앨 수 있다!
우선
app->res->values->themes->themes.xml 로 이동!
그리고 <Style> 태그안에 아래 두줄을 추가해줍니다.
<!-- 상단바 안보이기..-->
<item name="windowActionBar">false</item>
<item name="windowNoTitle">true</item>
그럼 끝~ 아주 깰곰
- 참고
'개발 > Android' 카테고리의 다른 글
[안드로이드] Retrofit을 이용하여 node.js 통신하기 (1) (0) | 2021.09.04 |
---|---|
[안드로이드] Activity를 dialog로 띄우기(사이즈 조절을 곁들인..) (0) | 2021.09.02 |
[안드로이드] no activity for token android.os.BinderProxy and it will come when I call startActivity(intent); 에러 (0) | 2021.09.01 |
[안드로이드] RecyclerView item간 간격 조절하기 (0) | 2021.09.01 |
[안드로이드] OkHttp vs Retrofit vs Volley (0) | 2021.08.13 |