[Appspresso] - 앱스프레소 안드로이드 백버튼 이벤트 Back key Event 예제
Appspresso 2011. 12. 5. 19:29반응형
ax.ext.android.setOnBackPressed(function(e){
var current = location.href;
current = current.substring(current.indexOf('index.html'), current.length);
if(current == 'index.html'){
var message = 'Quit?';
ax.ext.ui.confirm(function(e){
if(e == true){
ax.ext.android.finish();
}
}, message, {});
}else{
history.go(-1);
}
});
반응형
'Appspresso' 카테고리의 다른 글
[Appspresso] - IOS APNS to PHP 아이폰 APNS PHP (펌) (0) | 2012.11.13 |
---|---|
[Appspresso] - 앱스프레소 안드로이드 왼쪽 메뉴버튼 이벤트 (0) | 2012.08.06 |
[Appspresso] - Android Locked 화면 위로 Activity 띄우기 (0) | 2012.05.07 |
[Appresso] - 앱스프레소 네이티브 로딩창 띄우기 (0) | 2012.02.02 |
[Appspresso] - 앱스프레소 파일경로 유무 확인방법(샘플) (0) | 2012.01.29 |