ANDROID 4.1 버전 이상에서 액션바(타이틀바) 숨기기
extended ActionBarActivity 인 경우
1 2 3 4 5 | import android.support.v7.app.ActionBar; ActionBar actionBar = getSupportActionBar(); actionBar.hide(); |
extends Activity 인 경우
1 2 3 4 | import android.app.ActionBar; ActionBar actionBar = getActionBar(); actionBar.hide(); |
4.4부터는 activity로 액티비티가 안만들어지는듯
actionbarActivity로 만들어야 함
'Android' 카테고리의 다른 글
LG G6, SAMSUNG GALAXY S8 화면비 대응 (0) | 2017.07.05 |
---|---|
액션바(타이틀바) 숨기기 (0) | 2015.03.27 |
the project cannot be built until build path errors are resolved 에러 (0) | 2014.07.31 |
ActionBarActivity: cannot be resolved to a type에러 (0) | 2014.07.31 |
invalid project description 에러 (0) | 2014.07.31 |