mirror of
https://github.com/apache/cordova-android.git
synced 2025-02-22 00:32:55 +08:00
Removing un-needed logs
This commit is contained in:
parent
3835144b93
commit
05192a91da
@ -1072,31 +1072,6 @@ public class DroidGap extends Activity implements CordovaInterface {
|
|||||||
this.finish();
|
this.finish();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Called when the back key is pressed
|
|
||||||
*
|
|
||||||
* (non-Javadoc)
|
|
||||||
* @see android.app.Activity#onBackPressed()
|
|
||||||
*/
|
|
||||||
/*
|
|
||||||
@Override
|
|
||||||
public void onBackPressed()
|
|
||||||
{
|
|
||||||
Log.d("BackPressed", "in onBackPressed");
|
|
||||||
Log.d("BackPressed", "bound = " + this.bound);
|
|
||||||
//Log.d("BackPressed", "backHistory = " + this.backHistory());
|
|
||||||
// If back key is bound, then send event to JavaScript
|
|
||||||
|
|
||||||
if (!(this.bound || this.backHistory())) {
|
|
||||||
Log.d("BackPressed", "exiting");
|
|
||||||
this.activityState = ACTIVITY_EXITING;
|
|
||||||
super.onBackPressed();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
*/
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Called when a key is de-pressed. (Key UP)
|
* Called when a key is de-pressed. (Key UP)
|
||||||
*
|
*
|
||||||
@ -1111,11 +1086,8 @@ public class DroidGap extends Activity implements CordovaInterface {
|
|||||||
|
|
||||||
// If back key
|
// If back key
|
||||||
if (keyCode == KeyEvent.KEYCODE_BACK) {
|
if (keyCode == KeyEvent.KEYCODE_BACK) {
|
||||||
Log.d("BackButton", "I got an up from KEYCODE_BACK");
|
|
||||||
|
|
||||||
// If back key is bound, then send event to JavaScript
|
// If back key is bound, then send event to JavaScript
|
||||||
if (this.bound) {
|
if (this.bound) {
|
||||||
Log.d("BackButton", "bound is true firing an event to JS");
|
|
||||||
this.appView.loadUrl("javascript:cordova.fireDocumentEvent('backbutton');");
|
this.appView.loadUrl("javascript:cordova.fireDocumentEvent('backbutton');");
|
||||||
return true;
|
return true;
|
||||||
} else {
|
} else {
|
||||||
@ -1144,7 +1116,6 @@ public class DroidGap extends Activity implements CordovaInterface {
|
|||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
Log.d("BackPressed", "returning false");
|
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user