'Appspresso Back key'에 해당되는 글 1건

  1. 2011.12.05 [Appspresso] - 앱스프레소 안드로이드 백버튼 이벤트 Back key Event 예제

[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);
}

});
반응형
: