2014-01-25 10:46:46 +01:00
|
|
|
package nl.xservices.plugins;
|
|
|
|
|
2015-12-01 12:31:41 +01:00
|
|
|
import android.os.Build;
|
2014-01-25 10:46:46 +01:00
|
|
|
import android.view.Gravity;
|
2015-12-08 10:18:20 +01:00
|
|
|
import android.view.MotionEvent;
|
|
|
|
import android.view.View;
|
2015-12-01 08:59:43 +01:00
|
|
|
|
2014-01-25 10:46:46 +01:00
|
|
|
import org.apache.cordova.CallbackContext;
|
|
|
|
import org.apache.cordova.CordovaPlugin;
|
2015-12-08 10:18:20 +01:00
|
|
|
import org.apache.cordova.PluginResult;
|
2014-01-25 10:46:46 +01:00
|
|
|
import org.json.JSONArray;
|
|
|
|
import org.json.JSONException;
|
2015-04-22 21:51:38 +02:00
|
|
|
import org.json.JSONObject;
|
2014-01-25 10:46:46 +01:00
|
|
|
|
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();
|
2015-01-13 13:48:17 +01:00
|
|
|
|
|
|
|
Also, check https://github.com/JohnPersano/SuperToasts
|
2014-09-27 15:41:53 +02:00
|
|
|
*/
|
2014-01-25 10:46:46 +01:00
|
|
|
public class Toast extends CordovaPlugin {
|
|
|
|
|
|
|
|
private static final String ACTION_SHOW_EVENT = "show";
|
2015-05-21 21:04:37 +02:00
|
|
|
private static final String ACTION_HIDE_EVENT = "hide";
|
2014-01-25 10:46:46 +01:00
|
|
|
|
2015-01-13 13:48:17 +01:00
|
|
|
private android.widget.Toast mostRecentToast;
|
|
|
|
|
2015-12-01 12:31:41 +01:00
|
|
|
private static final boolean IS_AT_LEAST_ANDROID5 = Build.VERSION.SDK_INT >= 21;
|
|
|
|
|
2015-02-04 11:53:32 +01:00
|
|
|
// note that webView.isPaused() is not Xwalk compatible, so tracking it poor-man style
|
|
|
|
private boolean isPaused;
|
|
|
|
|
2014-01-25 10:46:46 +01:00
|
|
|
@Override
|
|
|
|
public boolean execute(String action, JSONArray args, final CallbackContext callbackContext) throws JSONException {
|
2015-05-21 21:04:37 +02:00
|
|
|
if (ACTION_HIDE_EVENT.equals(action)) {
|
|
|
|
if (mostRecentToast != null) {
|
|
|
|
mostRecentToast.cancel();
|
|
|
|
}
|
2015-05-21 21:24:03 +02:00
|
|
|
callbackContext.success();
|
2015-05-21 21:04:37 +02:00
|
|
|
return true;
|
|
|
|
|
|
|
|
} else if (ACTION_SHOW_EVENT.equals(action)) {
|
2014-01-25 10:46:46 +01:00
|
|
|
|
2015-02-04 11:53:32 +01:00
|
|
|
if (this.isPaused) {
|
2015-01-13 16:04:58 +01:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2015-04-22 21:51:38 +02:00
|
|
|
final JSONObject options = args.getJSONObject(0);
|
|
|
|
|
|
|
|
final String message = options.getString("message");
|
|
|
|
final String duration = options.getString("duration");
|
|
|
|
final String position = options.getString("position");
|
2015-06-11 19:39:49 +02:00
|
|
|
final int addPixelsY = options.has("addPixelsY") ? options.getInt("addPixelsY") : 0;
|
2014-01-25 10:46:46 +01:00
|
|
|
|
|
|
|
cordova.getActivity().runOnUiThread(new Runnable() {
|
|
|
|
public void run() {
|
2015-04-22 21:51:38 +02:00
|
|
|
android.widget.Toast toast = android.widget.Toast.makeText(
|
2015-12-01 12:31:41 +01:00
|
|
|
IS_AT_LEAST_ANDROID5 ? cordova.getActivity().getWindow().getContext() : cordova.getActivity().getApplicationContext(),
|
2015-04-22 21:51:38 +02:00
|
|
|
message,
|
|
|
|
"short".equals(duration) ? android.widget.Toast.LENGTH_SHORT : android.widget.Toast.LENGTH_LONG);
|
2014-01-25 10:46:46 +01:00
|
|
|
|
2015-12-01 12:31:41 +01:00
|
|
|
// if we want to change the background color some day, we can use this
|
|
|
|
// try {
|
|
|
|
// final Method setTintMethod = Drawable.class.getMethod("setTint", int.class);
|
|
|
|
// setTintMethod.invoke(toast.getView().getBackground(), Color.RED); // default is Color.DKGRAY
|
|
|
|
// } catch (Exception ignore) {
|
|
|
|
// }
|
2014-01-25 13:22:40 +01:00
|
|
|
if ("top".equals(position)) {
|
2015-06-11 19:39:49 +02:00
|
|
|
toast.setGravity(Gravity.TOP|Gravity.CENTER_HORIZONTAL, 0, 20 + addPixelsY);
|
2014-01-25 13:22:40 +01:00
|
|
|
} else if ("bottom".equals(position)) {
|
2015-06-11 19:39:49 +02:00
|
|
|
toast.setGravity(Gravity.BOTTOM|Gravity.CENTER_HORIZONTAL, 0, 20 - addPixelsY);
|
2014-01-25 13:52:59 +01:00
|
|
|
} else if ("center".equals(position)) {
|
2015-06-11 19:39:49 +02:00
|
|
|
toast.setGravity(Gravity.CENTER_VERTICAL|Gravity.CENTER_HORIZONTAL, 0, addPixelsY);
|
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
|
|
|
|
2015-12-08 10:18:20 +01:00
|
|
|
toast.getView().setOnTouchListener(new View.OnTouchListener() {
|
|
|
|
@Override
|
|
|
|
public boolean onTouch(View view, MotionEvent motionEvent) {
|
|
|
|
if (motionEvent.getAction() == MotionEvent.ACTION_DOWN) {
|
|
|
|
JSONObject json = new JSONObject();
|
|
|
|
try {
|
|
|
|
json.put("event", "touch");
|
|
|
|
json.put("message", message);
|
|
|
|
} catch (JSONException e) {
|
|
|
|
e.printStackTrace();
|
|
|
|
}
|
|
|
|
callbackContext.success(json);
|
|
|
|
return true;
|
|
|
|
} else {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2014-01-25 13:52:59 +01:00
|
|
|
toast.show();
|
2015-01-13 13:48:17 +01:00
|
|
|
mostRecentToast = toast;
|
2015-12-08 10:18:20 +01:00
|
|
|
|
|
|
|
PluginResult pr = new PluginResult(PluginResult.Status.OK);
|
|
|
|
pr.setKeepCallback(true);
|
|
|
|
callbackContext.sendPluginResult(pr);
|
2014-01-25 10:46:46 +01:00
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
return true;
|
|
|
|
} else {
|
|
|
|
callbackContext.error("toast." + action + " is not a supported function. Did you mean '" + ACTION_SHOW_EVENT + "'?");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
2015-01-13 13:48:17 +01:00
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onPause(boolean multitasking) {
|
|
|
|
if (mostRecentToast != null) {
|
|
|
|
mostRecentToast.cancel();
|
|
|
|
}
|
2015-02-04 11:53:32 +01:00
|
|
|
this.isPaused = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onResume(boolean multitasking) {
|
|
|
|
this.isPaused = false;
|
2015-01-13 13:48:17 +01:00
|
|
|
}
|
2015-08-04 21:09:29 +02:00
|
|
|
}
|