From 6ee16e9e7dd800baa9ee8e343035f1547db8e9f6 Mon Sep 17 00:00:00 2001 From: EddyVerbruggen Date: Sun, 29 Nov 2015 21:00:46 +0100 Subject: [PATCH 1/5] #60 Is it possible to change the android theme? --- plugin.xml | 2 +- src/android/nl/xservices/plugins/Toast.java | 6 +++++- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/plugin.xml b/plugin.xml index 12b5f40..63cd68e 100755 --- a/plugin.xml +++ b/plugin.xml @@ -2,7 +2,7 @@ + version="2.2.2-dev"> Toast diff --git a/src/android/nl/xservices/plugins/Toast.java b/src/android/nl/xservices/plugins/Toast.java index 3e39e66..20f8cdf 100644 --- a/src/android/nl/xservices/plugins/Toast.java +++ b/src/android/nl/xservices/plugins/Toast.java @@ -1,5 +1,6 @@ package nl.xservices.plugins; +import android.graphics.Color; import android.view.Gravity; import org.apache.cordova.CallbackContext; import org.apache.cordova.CordovaPlugin; @@ -52,10 +53,13 @@ public class Toast extends CordovaPlugin { cordova.getActivity().runOnUiThread(new Runnable() { public void run() { android.widget.Toast toast = android.widget.Toast.makeText( - cordova.getActivity().getApplicationContext(), + cordova.getActivity().getWindow().getContext(), message, "short".equals(duration) ? android.widget.Toast.LENGTH_SHORT : android.widget.Toast.LENGTH_LONG); +// toast.getView().setBackgroundColor(Color.GRAY); +// toast.getView().setPadding(20, 10, 20, 10); + toast.getView().getBackground().setTint(Color.DKGRAY); if ("top".equals(position)) { toast.setGravity(Gravity.TOP|Gravity.CENTER_HORIZONTAL, 0, 20 + addPixelsY); } else if ("bottom".equals(position)) { From 273334664ad342224da1bcb69f25b752d011d529 Mon Sep 17 00:00:00 2001 From: EddyVerbruggen Date: Mon, 30 Nov 2015 09:33:28 +0100 Subject: [PATCH 2/5] #60 Is it possible to change the android theme? Version bump. --- package.json | 2 +- plugin.xml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index c51e34f..814f9ad 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "cordova-plugin-x-toast", - "version": "2.2.1", + "version": "2.2.2", "description": "This plugin allows you to show a Toast. A Toast is a little non intrusive buttonless popup which automatically disappears.", "cordova": { "id": "cordova-plugin-x-toast", diff --git a/plugin.xml b/plugin.xml index 63cd68e..1eee3de 100755 --- a/plugin.xml +++ b/plugin.xml @@ -2,7 +2,7 @@ + version="2.2.2"> Toast From f8887dc45e32d7273e1c19613664d3383d282588 Mon Sep 17 00:00:00 2001 From: EddyVerbruggen Date: Tue, 1 Dec 2015 08:59:43 +0100 Subject: [PATCH 3/5] #60 Is it possible to change the android theme? Compatibility with older Android versions. #61 Android exception NoSuchMethodError setTint. --- package.json | 2 +- plugin.xml | 2 +- src/android/nl/xservices/plugins/Toast.java | 15 +++++++++++---- 3 files changed, 13 insertions(+), 6 deletions(-) diff --git a/package.json b/package.json index 814f9ad..8ab1122 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "cordova-plugin-x-toast", - "version": "2.2.2", + "version": "2.2.3", "description": "This plugin allows you to show a Toast. A Toast is a little non intrusive buttonless popup which automatically disappears.", "cordova": { "id": "cordova-plugin-x-toast", diff --git a/plugin.xml b/plugin.xml index 1eee3de..eed502e 100755 --- a/plugin.xml +++ b/plugin.xml @@ -2,7 +2,7 @@ + version="2.2.3"> Toast diff --git a/src/android/nl/xservices/plugins/Toast.java b/src/android/nl/xservices/plugins/Toast.java index 20f8cdf..f9d9f9c 100644 --- a/src/android/nl/xservices/plugins/Toast.java +++ b/src/android/nl/xservices/plugins/Toast.java @@ -1,13 +1,17 @@ package nl.xservices.plugins; import android.graphics.Color; +import android.graphics.drawable.Drawable; import android.view.Gravity; + import org.apache.cordova.CallbackContext; import org.apache.cordova.CordovaPlugin; import org.json.JSONArray; import org.json.JSONException; import org.json.JSONObject; +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 @@ -53,13 +57,16 @@ public class Toast extends CordovaPlugin { cordova.getActivity().runOnUiThread(new Runnable() { public void run() { android.widget.Toast toast = android.widget.Toast.makeText( - cordova.getActivity().getWindow().getContext(), +// cordova.getActivity().getWindow().getContext(), + cordova.getActivity().getApplicationContext(), message, "short".equals(duration) ? android.widget.Toast.LENGTH_SHORT : android.widget.Toast.LENGTH_LONG); -// toast.getView().setBackgroundColor(Color.GRAY); -// toast.getView().setPadding(20, 10, 20, 10); - toast.getView().getBackground().setTint(Color.DKGRAY); + try { + final Method setTintMethod = Drawable.class.getMethod("setTint", int.class); + setTintMethod.invoke(toast.getView().getBackground(), Color.DKGRAY); + } catch (Exception ignore) { + } if ("top".equals(position)) { toast.setGravity(Gravity.TOP|Gravity.CENTER_HORIZONTAL, 0, 20 + addPixelsY); } else if ("bottom".equals(position)) { From ecb47ab11005e498e4bb03746a0aea7d13e21587 Mon Sep 17 00:00:00 2001 From: EddyVerbruggen Date: Tue, 1 Dec 2015 12:31:41 +0100 Subject: [PATCH 4/5] #60 Is it possible to change the android theme? Compatibility with older Android versions. --- src/android/nl/xservices/plugins/Toast.java | 21 ++++++++++----------- 1 file changed, 10 insertions(+), 11 deletions(-) diff --git a/src/android/nl/xservices/plugins/Toast.java b/src/android/nl/xservices/plugins/Toast.java index f9d9f9c..523f509 100644 --- a/src/android/nl/xservices/plugins/Toast.java +++ b/src/android/nl/xservices/plugins/Toast.java @@ -1,7 +1,6 @@ package nl.xservices.plugins; -import android.graphics.Color; -import android.graphics.drawable.Drawable; +import android.os.Build; import android.view.Gravity; import org.apache.cordova.CallbackContext; @@ -10,8 +9,6 @@ import org.json.JSONArray; import org.json.JSONException; import org.json.JSONObject; -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 @@ -29,6 +26,8 @@ public class Toast extends CordovaPlugin { private android.widget.Toast mostRecentToast; + private static final boolean IS_AT_LEAST_ANDROID5 = Build.VERSION.SDK_INT >= 21; + // note that webView.isPaused() is not Xwalk compatible, so tracking it poor-man style private boolean isPaused; @@ -57,16 +56,16 @@ public class Toast extends CordovaPlugin { cordova.getActivity().runOnUiThread(new Runnable() { public void run() { android.widget.Toast toast = android.widget.Toast.makeText( -// cordova.getActivity().getWindow().getContext(), - cordova.getActivity().getApplicationContext(), + IS_AT_LEAST_ANDROID5 ? cordova.getActivity().getWindow().getContext() : cordova.getActivity().getApplicationContext(), message, "short".equals(duration) ? android.widget.Toast.LENGTH_SHORT : android.widget.Toast.LENGTH_LONG); - try { - final Method setTintMethod = Drawable.class.getMethod("setTint", int.class); - setTintMethod.invoke(toast.getView().getBackground(), Color.DKGRAY); - } catch (Exception ignore) { - } + // 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) { +// } if ("top".equals(position)) { toast.setGravity(Gravity.TOP|Gravity.CENTER_HORIZONTAL, 0, 20 + addPixelsY); } else if ("bottom".equals(position)) { From 335f731da483c1be432658f7a37d7b5836211f51 Mon Sep 17 00:00:00 2001 From: EddyVerbruggen Date: Tue, 8 Dec 2015 10:18:20 +0100 Subject: [PATCH 5/5] #20 Click event --- README.md | 31 ++++++++++++++++++++- package.json | 2 +- plugin.xml | 2 +- src/android/nl/xservices/plugins/Toast.java | 27 +++++++++++++++++- src/ios/Toast+UIView.h | 3 +- src/ios/Toast+UIView.m | 19 +++++++++++-- src/ios/Toast.m | 8 +++++- 7 files changed, 83 insertions(+), 9 deletions(-) diff --git a/README.md b/README.md index 2ea406f..8b4c652 100644 --- a/README.md +++ b/README.md @@ -151,7 +151,7 @@ You can copy-paste these lines of code for a quick test: Since 2.1.0 you can add pixels to move the toast up or down. Note that `showWithOptions` can be used instead of the functions above, but it's not useful unless you want to pass `addPixelsY`. ```js -function showTop() { +function showBottom() { window.plugins.toast.showWithOptions( { message: "hey there", @@ -174,6 +174,33 @@ function hide() { } ``` +### Receiving a callback when a Toast is tapped +On iOS and Android the success handler of your `show` function will be notified (again) when the toast was tapped. + +So the first time the success handler fires is when the toast is shown, and in case the user taps the toast it will be +called again. You can distinguish between those events of course: + +```js + window.plugins.toast.showWithOptions( + { + message: "hey there", + duration: "short", + position: "bottom", + addPixelsY: -40 // added a negative value to move it up a bit (default 0) + }, + // implement the success callback + function(result) { + if (result && result.event) { + console.log("The toast was tapped"); + console.log("Event: " + result.event); // will be defined, with a value of "touch" when it was tapped by the user + console.log("Message: " + result.message); // will be equal to the message you passed in + } else { + console.log("The toast has been shown"); + } + } + ); +``` + ### WP8 quirks The WP8 implementation needs a little more work, but it's perfectly useable when you keep this in mind: * You can't show two Toasts simultaneously. @@ -188,6 +215,8 @@ The Android code was entirely created by me. For iOS most credits go to this excellent [Toast for iOS project by Charles Scalesse] (https://github.com/scalessec/Toast). ## 6. CHANGELOG +2.3.0: The plugin will now report back to JS if Toasts were tapped by the user. + 2.0.1: iOS messages are hidden when another one is shown. [Thanks Richie Min!](https://github.com/EddyVerbruggen/Toast-PhoneGap-Plugin/pull/13) 2.0: WP8 support diff --git a/package.json b/package.json index 8ab1122..8d68891 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "cordova-plugin-x-toast", - "version": "2.2.3", + "version": "2.3.0", "description": "This plugin allows you to show a Toast. A Toast is a little non intrusive buttonless popup which automatically disappears.", "cordova": { "id": "cordova-plugin-x-toast", diff --git a/plugin.xml b/plugin.xml index eed502e..d0e99d3 100755 --- a/plugin.xml +++ b/plugin.xml @@ -2,7 +2,7 @@ + version="2.3.0"> Toast diff --git a/src/android/nl/xservices/plugins/Toast.java b/src/android/nl/xservices/plugins/Toast.java index 523f509..6e2a560 100644 --- a/src/android/nl/xservices/plugins/Toast.java +++ b/src/android/nl/xservices/plugins/Toast.java @@ -2,9 +2,12 @@ package nl.xservices.plugins; import android.os.Build; import android.view.Gravity; +import android.view.MotionEvent; +import android.view.View; import org.apache.cordova.CallbackContext; import org.apache.cordova.CordovaPlugin; +import org.apache.cordova.PluginResult; import org.json.JSONArray; import org.json.JSONException; import org.json.JSONObject; @@ -77,9 +80,31 @@ public class Toast extends CordovaPlugin { return; } + 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; + } + } + }); + toast.show(); mostRecentToast = toast; - callbackContext.success(); + + PluginResult pr = new PluginResult(PluginResult.Status.OK); + pr.setKeepCallback(true); + callbackContext.sendPluginResult(pr); } }); diff --git a/src/ios/Toast+UIView.h b/src/ios/Toast+UIView.h index 08ed54a..6ba8928 100644 --- a/src/ios/Toast+UIView.h +++ b/src/ios/Toast+UIView.h @@ -1,11 +1,12 @@ #import +#import @interface UIView (Toast) // each makeToast method creates a view and displays it as toast - (void)makeToast:(NSString *)message; - (void)makeToast:(NSString *)message duration:(NSTimeInterval)interval position:(id)position; -- (void)makeToast:(NSString *)message duration:(NSTimeInterval)duration position:(id)position addPixelsY:(int)addPixelsY; +- (void)makeToast:(NSString *)message duration:(NSTimeInterval)duration position:(id)position addPixelsY:(int)addPixelsY commandDelegate:(id )commandDelegate callbackId:(NSString *)callbackId; - (void)makeToast:(NSString *)message duration:(NSTimeInterval)interval position:(id)position image:(UIImage *)image; - (void)makeToast:(NSString *)message duration:(NSTimeInterval)interval position:(id)position title:(NSString *)title; - (void)makeToast:(NSString *)message duration:(NSTimeInterval)interval position:(id)position title:(NSString *)title image:(UIImage *)image; diff --git a/src/ios/Toast+UIView.m b/src/ios/Toast+UIView.m index 7979a0a..bf165b2 100644 --- a/src/ios/Toast+UIView.m +++ b/src/ios/Toast+UIView.m @@ -48,6 +48,11 @@ static const NSString * CSToastActivityViewKey = @"CSToastActivityViewKey"; static UIView *prevToast = NULL; +// doesn't matter these are static +static id commandDelegate; +static id callbackId; +static id msg; + @interface UIView (ToastPrivate) - (void)hideToast:(UIView *)toast; @@ -56,7 +61,6 @@ static UIView *prevToast = NULL; - (CGPoint)centerPointForPosition:(id)position withToast:(UIView *)toast withAddedPixelsY:(int) addPixelsY; - (UIView *)viewForMessage:(NSString *)message title:(NSString *)title image:(UIImage *)image; - (CGSize)sizeForString:(NSString *)string font:(UIFont *)font constrainedToSize:(CGSize)constrainedSize lineBreakMode:(NSLineBreakMode)lineBreakMode; - @end @@ -73,7 +77,10 @@ static UIView *prevToast = NULL; [self showToast:toast duration:duration position:position]; } -- (void)makeToast:(NSString *)message duration:(NSTimeInterval)duration position:(id)position addPixelsY:(int)addPixelsY { +- (void)makeToast:(NSString *)message duration:(NSTimeInterval)duration position:(id)position addPixelsY:(int)addPixelsY commandDelegate:(id )_commandDelegate callbackId:(NSString *)_callbackId { + commandDelegate = _commandDelegate; + callbackId = _callbackId; + msg = message; UIView *toast = [self viewForMessage:message title:nil image:nil]; [self showToast:toast duration:duration position:position addedPixelsY:addPixelsY]; } @@ -101,12 +108,13 @@ static UIView *prevToast = NULL; [self showToast:toast duration:CSToastDefaultDuration position:CSToastDefaultPosition addedPixelsY:0]; } -- (void)showToast:(UIView *)toast duration:(NSTimeInterval)duration position:(id)point addedPixelsY:(int) addPixelsY { +- (void)showToast:(UIView *)toast duration:(NSTimeInterval)duration position:(id)point addedPixelsY:(int) addPixelsY { [self hideToast]; prevToast = toast; toast.center = [self centerPointForPosition:point withToast:toast withAddedPixelsY:addPixelsY]; toast.alpha = 0.0; + // note that we changed this to be always true if (CSToastHidesOnTap) { UITapGestureRecognizer *recognizer = [[UITapGestureRecognizer alloc] initWithTarget:toast action:@selector(handleToastTapped:)]; [toast addGestureRecognizer:recognizer]; @@ -168,6 +176,11 @@ static UIView *prevToast = NULL; [timer invalidate]; [self hideToast:recognizer.view]; + + // also send an event back to JS + NSDictionary *dict = [[NSDictionary alloc] initWithObjectsAndKeys:msg, @"message", @"touch", @"event", nil]; + CDVPluginResult* pluginResult = [CDVPluginResult resultWithStatus:CDVCommandStatus_OK messageAsDictionary:dict]; + [commandDelegate sendPluginResult:pluginResult callbackId:callbackId]; } #pragma mark - Toast Activity Methods diff --git a/src/ios/Toast.m b/src/ios/Toast.m index e8c5e0d..43f6b8b 100644 --- a/src/ios/Toast.m +++ b/src/ios/Toast.m @@ -30,9 +30,15 @@ return; } - [self.webView makeToast:message duration:durationInt position:position addPixelsY:addPixelsY == nil ? 0 : [addPixelsY intValue]]; + [self.webView makeToast:message + duration:durationInt + position:position + addPixelsY:addPixelsY == nil ? 0 : [addPixelsY intValue] + commandDelegate:self.commandDelegate + callbackId:command.callbackId]; CDVPluginResult* pluginResult = [CDVPluginResult resultWithStatus:CDVCommandStatus_OK]; + pluginResult.keepCallback = [NSNumber numberWithBool:YES]; [self.commandDelegate sendPluginResult:pluginResult callbackId:command.callbackId]; }