본문 바로가기
개발/안드로이드

하단 소프트웨어 메뉴키 여부 체크

by darksilber 2016. 6. 3.
반응형

출처 - http://stackoverflow.com/questions/16092431/check-for-navigation-bar

 

boolean hasMenuKey = ViewConfiguration.get(context).hasPermanentMenuKey();
boolean hasBackKey = KeyCharacterMap.deviceHasKey(KeyEvent.KEYCODE_BACK);
 
if(!hasMenuKey && !hasBackKey) {
    // Do whatever you need to do, this device has a navigation bar
}
반응형

댓글