아래 빨간 모양이 쳐진 부분을 Action Bar 라고 부른다. Action Bar를 없애는 방법은 두가지 방법이다. 첫번째!!!!!!!!!!!!! 하나의 레이아웃에서만 없애기 자바 코드에 아래의 코드를 넣어주면 된다. ActionBar actionBar = getSupportActionBar(); actionBar.hide(); @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_logo); ActionBar actionBar = getSupportActionBar(); actionBar.hide(); 두번째 방법!!!!..