forked from github/cordova-android
Add better support for Activity result callbacks from plugins. Add some sugar for calling success / error callbacks from plugins
This commit is contained in:
parent
941b64f6a2
commit
0b1e760fc1
@ -9,6 +9,7 @@ package com.phonegap;
|
|||||||
|
|
||||||
import java.util.HashMap;
|
import java.util.HashMap;
|
||||||
import java.util.Map.Entry;
|
import java.util.Map.Entry;
|
||||||
|
|
||||||
import org.json.JSONArray;
|
import org.json.JSONArray;
|
||||||
import org.json.JSONException;
|
import org.json.JSONException;
|
||||||
|
|
||||||
@ -617,7 +618,7 @@ public class DroidGap extends PhonegapActivity {
|
|||||||
public void setDoubleProperty(String name, double value) {
|
public void setDoubleProperty(String name, double value) {
|
||||||
this.getIntent().putExtra(name, value);
|
this.getIntent().putExtra(name, value);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
/**
|
/**
|
||||||
* Called when the system is about to start resuming a previous activity.
|
* Called when the system is about to start resuming a previous activity.
|
||||||
@ -1311,12 +1312,7 @@ public class DroidGap extends PhonegapActivity {
|
|||||||
@Override
|
@Override
|
||||||
public void startActivityForResult(Intent intent, int requestCode) throws RuntimeException {
|
public void startActivityForResult(Intent intent, int requestCode) throws RuntimeException {
|
||||||
System.out.println("startActivityForResult(intent,"+requestCode+")");
|
System.out.println("startActivityForResult(intent,"+requestCode+")");
|
||||||
if (requestCode == -1) {
|
super.startActivityForResult(intent, requestCode);
|
||||||
super.startActivityForResult(intent, requestCode);
|
|
||||||
}
|
|
||||||
else {
|
|
||||||
throw new RuntimeException("PhoneGap Exception: Call startActivityForResult(Command, Intent) instead.");
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -1357,7 +1353,12 @@ public class DroidGap extends PhonegapActivity {
|
|||||||
callback.onActivityResult(requestCode, resultCode, intent);
|
callback.onActivityResult(requestCode, resultCode, intent);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void setActivityResultCallback(Plugin plugin) {
|
||||||
|
this.activityResultCallback = plugin;
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Report an error to the host application. These errors are unrecoverable (i.e. the main resource is unavailable).
|
* Report an error to the host application. These errors are unrecoverable (i.e. the main resource is unavailable).
|
||||||
* The errorCode parameter corresponds to one of the ERROR_* constants.
|
* The errorCode parameter corresponds to one of the ERROR_* constants.
|
||||||
|
@ -15,7 +15,7 @@ import android.content.Intent;
|
|||||||
* It is used to isolate plugin development, and remove dependency on entire Phonegap library.
|
* It is used to isolate plugin development, and remove dependency on entire Phonegap library.
|
||||||
*/
|
*/
|
||||||
public abstract class PhonegapActivity extends Activity {
|
public abstract class PhonegapActivity extends Activity {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Add a class that implements a service.
|
* Add a class that implements a service.
|
||||||
*
|
*
|
||||||
@ -40,4 +40,11 @@ public abstract class PhonegapActivity extends Activity {
|
|||||||
* @param requestCode The request code that is passed to callback to identify the activity
|
* @param requestCode The request code that is passed to callback to identify the activity
|
||||||
*/
|
*/
|
||||||
abstract public void startActivityForResult(Plugin command, Intent intent, int requestCode);
|
abstract public void startActivityForResult(Plugin command, Intent intent, int requestCode);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Set the plugin to be called when a sub-activity exits.
|
||||||
|
*
|
||||||
|
* @param plugin The plugin on which onActivityResult is to be called
|
||||||
|
*/
|
||||||
|
abstract public void setActivityResultCallback(Plugin plugin);
|
||||||
}
|
}
|
||||||
|
@ -8,6 +8,7 @@
|
|||||||
package com.phonegap.api;
|
package com.phonegap.api;
|
||||||
|
|
||||||
import org.json.JSONArray;
|
import org.json.JSONArray;
|
||||||
|
import org.json.JSONObject;
|
||||||
|
|
||||||
import android.content.Intent;
|
import android.content.Intent;
|
||||||
import android.webkit.WebView;
|
import android.webkit.WebView;
|
||||||
@ -19,6 +20,7 @@ import android.webkit.WebView;
|
|||||||
*/
|
*/
|
||||||
public abstract class Plugin implements IPlugin {
|
public abstract class Plugin implements IPlugin {
|
||||||
|
|
||||||
|
public String id;
|
||||||
public WebView webView; // WebView object
|
public WebView webView; // WebView object
|
||||||
public PhonegapActivity ctx; // PhonegapActivity object
|
public PhonegapActivity ctx; // PhonegapActivity object
|
||||||
|
|
||||||
@ -126,6 +128,26 @@ public abstract class Plugin implements IPlugin {
|
|||||||
this.ctx.sendJavascript(pluginResult.toSuccessCallbackString(callbackId));
|
this.ctx.sendJavascript(pluginResult.toSuccessCallbackString(callbackId));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Helper for success callbacks that just returns the Status.OK by default
|
||||||
|
*
|
||||||
|
* @param message The message to add to the success result.
|
||||||
|
* @param callbackId The callback id used when calling back into JavaScript.
|
||||||
|
*/
|
||||||
|
public void success(JSONObject message, String callbackId) {
|
||||||
|
this.ctx.sendJavascript(new PluginResult(PluginResult.Status.OK, message).toSuccessCallbackString(callbackId));
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Helper for success callbacks that just returns the Status.OK by default
|
||||||
|
*
|
||||||
|
* @param message The message to add to the success result.
|
||||||
|
* @param callbackId The callback id used when calling back into JavaScript.
|
||||||
|
*/
|
||||||
|
public void success(String message, String callbackId) {
|
||||||
|
this.ctx.sendJavascript(new PluginResult(PluginResult.Status.OK, message).toSuccessCallbackString(callbackId));
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Call the JavaScript error callback for this plugin.
|
* Call the JavaScript error callback for this plugin.
|
||||||
*
|
*
|
||||||
@ -135,4 +157,24 @@ public abstract class Plugin implements IPlugin {
|
|||||||
public void error(PluginResult pluginResult, String callbackId) {
|
public void error(PluginResult pluginResult, String callbackId) {
|
||||||
this.ctx.sendJavascript(pluginResult.toErrorCallbackString(callbackId));
|
this.ctx.sendJavascript(pluginResult.toErrorCallbackString(callbackId));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Helper for error callbacks that just returns the Status.ERROR by default
|
||||||
|
*
|
||||||
|
* @param message The message to add to the error result.
|
||||||
|
* @param callbackId The callback id used when calling back into JavaScript.
|
||||||
|
*/
|
||||||
|
public void error(JSONObject message, String callbackId) {
|
||||||
|
this.ctx.sendJavascript(new PluginResult(PluginResult.Status.ERROR, message).toErrorCallbackString(callbackId));
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Helper for error callbacks that just returns the Status.ERROR by default
|
||||||
|
*
|
||||||
|
* @param message The message to add to the error result.
|
||||||
|
* @param callbackId The callback id used when calling back into JavaScript.
|
||||||
|
*/
|
||||||
|
public void error(String message, String callbackId) {
|
||||||
|
this.ctx.sendJavascript(new PluginResult(PluginResult.Status.ERROR, message).toErrorCallbackString(callbackId));
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
@ -101,7 +101,7 @@ public final class PluginManager {
|
|||||||
ctx.sendJavascript(cr.toErrorCallbackString(callbackId));
|
ctx.sendJavascript(cr.toErrorCallbackString(callbackId));
|
||||||
}
|
}
|
||||||
} catch (Exception e) {
|
} catch (Exception e) {
|
||||||
PluginResult cr = new PluginResult(PluginResult.Status.ERROR);
|
PluginResult cr = new PluginResult(PluginResult.Status.ERROR, e.getMessage());
|
||||||
ctx.sendJavascript(cr.toErrorCallbackString(callbackId));
|
ctx.sendJavascript(cr.toErrorCallbackString(callbackId));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -160,24 +160,7 @@ public final class PluginManager {
|
|||||||
}
|
}
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* Add plugin to be loaded and cached. This creates an instance of the plugin.
|
|
||||||
* If plugin is already created, then just return it.
|
|
||||||
*
|
|
||||||
* @param className The class to load
|
|
||||||
* @return The plugin
|
|
||||||
*/
|
|
||||||
public Plugin addPlugin(String className) {
|
|
||||||
try {
|
|
||||||
return this.addPlugin(className, this.getClassByName(className));
|
|
||||||
} catch (ClassNotFoundException e) {
|
|
||||||
e.printStackTrace();
|
|
||||||
System.out.println("Error adding plugin "+className+".");
|
|
||||||
}
|
|
||||||
return null;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Add plugin to be loaded and cached. This creates an instance of the plugin.
|
* Add plugin to be loaded and cached. This creates an instance of the plugin.
|
||||||
* If plugin is already created, then just return it.
|
* If plugin is already created, then just return it.
|
||||||
|
Loading…
x
Reference in New Issue
Block a user