107 lines
3.5 KiB
Java
Raw Normal View History

2014-01-25 10:46:46 +01:00
package nl.xservices.plugins;
import android.graphics.Color;
import android.graphics.drawable.Drawable;
2014-01-25 10:46:46 +01:00
import android.view.Gravity;
2014-01-25 10:46:46 +01:00
import org.apache.cordova.CallbackContext;
import org.apache.cordova.CordovaPlugin;
import org.json.JSONArray;
import org.json.JSONException;
import org.json.JSONObject;
2014-01-25 10:46:46 +01:00
import java.lang.reflect.Method;
/*
// 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();
Also, check https://github.com/JohnPersano/SuperToasts
*/
2014-01-25 10:46:46 +01:00
public class Toast extends CordovaPlugin {
private static final String ACTION_SHOW_EVENT = "show";
private static final String ACTION_HIDE_EVENT = "hide";
2014-01-25 10:46:46 +01:00
private android.widget.Toast mostRecentToast;
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 {
if (ACTION_HIDE_EVENT.equals(action)) {
if (mostRecentToast != null) {
mostRecentToast.cancel();
}
callbackContext.success();
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) {
return true;
}
final JSONObject options = args.getJSONObject(0);
final String message = options.getString("message");
final String duration = options.getString("duration");
final String position = options.getString("position");
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() {
android.widget.Toast toast = android.widget.Toast.makeText(
// cordova.getActivity().getWindow().getContext(),
cordova.getActivity().getApplicationContext(),
message,
"short".equals(duration) ? android.widget.Toast.LENGTH_SHORT : android.widget.Toast.LENGTH_LONG);
2014-01-25 10:46:46 +01:00
try {
final Method setTintMethod = Drawable.class.getMethod("setTint", int.class);
setTintMethod.invoke(toast.getView().getBackground(), Color.DKGRAY);
} catch (Exception ignore) {
}
2014-01-25 13:22:40 +01:00
if ("top".equals(position)) {
toast.setGravity(Gravity.TOP|Gravity.CENTER_HORIZONTAL, 0, 20 + addPixelsY);
2014-01-25 13:22:40 +01:00
} else if ("bottom".equals(position)) {
toast.setGravity(Gravity.BOTTOM|Gravity.CENTER_HORIZONTAL, 0, 20 - addPixelsY);
2014-01-25 13:52:59 +01:00
} else if ("center".equals(position)) {
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'");
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
toast.show();
mostRecentToast = toast;
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;
}
}
@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;
}
}