안드로이드 에서 타이틀 바를 없애는 방법은 간단하다.

먼저 app/res/values/style.xml 로 가 준다.

<resources> <!-- Base application theme. --> <style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar"> <!-- Customize your theme here. --> <item name="colorPrimary">@color/colorPrimary</item> <item name="colorPrimaryDark">@color/colorPrimaryDark</item> <item name="colorAccent">@color/colorAccent</item> <!--title bar 없애기--> <item name="windowActionBar">false</item> <item name="windowNoTitle">true</item> </style> </resources>

<item name="windowActionBar">false</item>

<item name="windowNoTitle">true</item>

이 두가지를 넣어주면 깔끔하게 없어 진다.

상태바는 엑티비티에서 바꿔주면 된다.

메인 엑티비티 자바코드에서 아래와 같이

protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN, WindowManager.LayoutParams.FLAG_FULLSCREEN); setContentView(R.layout.activity_main);

getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN,

WindowManager.LayoutParams.FLAG_FULLSCREEN);

이 코드를 super.onCreate()와 setContentView() 사이에 넣어준다.

+ Recent posts