2014-01-25 10:46:46 +01:00
|
|
|
package nl.xservices.plugins;
|
|
|
|
|
|
|
|
import android.view.Gravity;
|
|
|
|
import org.apache.cordova.CallbackContext;
|
|
|
|
import org.apache.cordova.CordovaPlugin;
|
|
|
|
import org.json.JSONArray;
|
|
|
|
import org.json.JSONException;
|
|
|
|
|
2014-09-27 15:41:53 +02:00
|
|
|
/*
|
|
|
|
// TODO nice way for the Toast plugin to offer a longer delay than the default short and long options
|
|
|
|
// TODO also look at https://github.com/JohnPersano/Supertoasts
|
|
|
|
new CountDownTimer(6000, 1000) {
|
|
|
|
public void onTick(long millisUntilFinished) {toast.show();}
|
|
|
|
public void onFinish() {toast.show();}
|
|
|
|
}.start();
|
|
|
|
*/
|
2014-01-25 10:46:46 +01:00
|
|
|
public class Toast extends CordovaPlugin {
|
|
|
|
|
|
|
|
private static final String ACTION_SHOW_EVENT = "show";
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public boolean execute(String action, JSONArray args, final CallbackContext callbackContext) throws JSONException {
|
|
|
|
if (ACTION_SHOW_EVENT.equals(action)) {
|
|
|
|
|
2014-01-25 13:22:40 +01:00
|
|
|
final String message = args.getString(0);
|
|
|
|
final String duration = args.getString(1);
|
|
|
|
final String position = args.getString(2);
|
2014-01-25 10:46:46 +01:00
|
|
|
|
|
|
|
cordova.getActivity().runOnUiThread(new Runnable() {
|
|
|
|
public void run() {
|
2014-01-25 13:57:19 +01:00
|
|
|
android.widget.Toast toast = android.widget.Toast.makeText(webView.getContext(), message, 0);
|
2014-01-25 10:46:46 +01:00
|
|
|
|
2014-01-25 13:22:40 +01:00
|
|
|
if ("top".equals(position)) {
|
2014-01-25 13:57:19 +01:00
|
|
|
toast.setGravity(Gravity.TOP|Gravity.CENTER_HORIZONTAL, 0, 20);
|
2014-01-25 13:22:40 +01:00
|
|
|
} else if ("bottom".equals(position)) {
|
2014-01-25 13:57:19 +01:00
|
|
|
toast.setGravity(Gravity.BOTTOM|Gravity.CENTER_HORIZONTAL, 0, 20);
|
2014-01-25 13:52:59 +01:00
|
|
|
} else if ("center".equals(position)) {
|
2014-01-25 13:22:40 +01:00
|
|
|
toast.setGravity(Gravity.CENTER_VERTICAL|Gravity.CENTER_HORIZONTAL, 0, 0);
|
2014-01-25 13:52:59 +01:00
|
|
|
} else {
|
|
|
|
callbackContext.error("invalid position. valid options are 'top', 'center' and 'bottom'");
|
2014-07-13 09:58:05 +02:00
|
|
|
return;
|
2014-01-25 13:22:40 +01:00
|
|
|
}
|
2014-01-25 10:46:46 +01:00
|
|
|
|
2014-01-25 13:52:59 +01:00
|
|
|
if ("short".equals(duration)) {
|
|
|
|
toast.setDuration(android.widget.Toast.LENGTH_SHORT);
|
|
|
|
} else if ("long".equals(duration)) {
|
|
|
|
toast.setDuration(android.widget.Toast.LENGTH_LONG);
|
|
|
|
} else {
|
|
|
|
callbackContext.error("invalid duration. valid options are 'short' and 'long'");
|
2014-07-13 09:58:05 +02:00
|
|
|
return;
|
2014-01-25 13:52:59 +01:00
|
|
|
}
|
2014-01-25 10:46:46 +01:00
|
|
|
|
2014-01-25 13:52:59 +01:00
|
|
|
toast.show();
|
2014-01-25 10:46:46 +01:00
|
|
|
callbackContext.success();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
return true;
|
|
|
|
} else {
|
|
|
|
callbackContext.error("toast." + action + " is not a supported function. Did you mean '" + ACTION_SHOW_EVENT + "'?");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
2014-07-13 09:58:05 +02:00
|
|
|
}
|