65 lines
2.1 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
2014-01-25 13:22:40 +01:00
if (!"top".equals(position) && !"center".equals(position) && !"bottom".equals(position)) {
callbackContext.error("invalid position. valid options are 'top', 'center' and 'bottom'");
return false;
}
int durationInt;
if ("short".equals(duration)) {
durationInt = android.widget.Toast.LENGTH_SHORT;
} else if ("long".equals(duration)) {
durationInt = android.widget.Toast.LENGTH_LONG;
} else {
callbackContext.error("invalid duration. valid options are 'short' and 'long'");
return false;
}
2014-01-25 10:46:46 +01:00
cordova.getActivity().runOnUiThread(new Runnable() {
public void run() {
android.widget.Toast toast = android.widget.Toast.makeText(
webView.getContext(),
2014-01-25 13:22:40 +01:00
message,
durationInt);
2014-01-25 10:46:46 +01:00
2014-01-25 13:22:40 +01:00
if ("top".equals(position)) {
// TODO correct position
toast.setGravity(Gravity.CENTER_VERTICAL|Gravity.CENTER_HORIZONTAL, 0, 0);
} else if ("bottom".equals(position)) {
// TODO correct position
toast.setGravity(Gravity.CENTER_VERTICAL|Gravity.CENTER_HORIZONTAL, 0, 0);
} else {
toast.setGravity(Gravity.CENTER_VERTICAL|Gravity.CENTER_HORIZONTAL, 0, 0);
}
2014-01-25 10:46:46 +01:00
toast.show();
callbackContext.success();
}
});
return true;
} else {
callbackContext.error("toast." + action + " is not a supported function. Did you mean '" + ACTION_SHOW_EVENT + "'?");
return false;
}
}
}