57 lines
1.9 KiB
Java
Raw Normal View History

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;
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'");
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'");
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;
}
}
}