forked from github/Toast-PhoneGap-Plugin
option to set the text color of the toast
This commit is contained in:
parent
e8ade312d9
commit
6ba778dd22
@ -92,6 +92,7 @@ public class Toast extends CordovaPlugin {
|
|||||||
|
|
||||||
// the defaults mimic the default toast as close as possible
|
// the defaults mimic the default toast as close as possible
|
||||||
final String backgroundColor = styling.optString("backgroundColor", "#333333");
|
final String backgroundColor = styling.optString("backgroundColor", "#333333");
|
||||||
|
final String textColor = styling.optString("textColor", "#ffffff");
|
||||||
final double opacity = styling.optDouble("opacity", 0.8);
|
final double opacity = styling.optDouble("opacity", 0.8);
|
||||||
final int cornerRadius = styling.optInt("cornerRadius", 100);
|
final int cornerRadius = styling.optInt("cornerRadius", 100);
|
||||||
final int horizontalPadding = styling.optInt("horizontalPadding", 50);
|
final int horizontalPadding = styling.optInt("horizontalPadding", 50);
|
||||||
@ -102,6 +103,10 @@ public class Toast extends CordovaPlugin {
|
|||||||
shape.setAlpha((int)(opacity * 255)); // 0-255, where 0 is an invisible background
|
shape.setAlpha((int)(opacity * 255)); // 0-255, where 0 is an invisible background
|
||||||
shape.setColor(Color.parseColor(backgroundColor));
|
shape.setColor(Color.parseColor(backgroundColor));
|
||||||
toast.getView().setBackground(shape);
|
toast.getView().setBackground(shape);
|
||||||
|
|
||||||
|
text = (TextView) toast.getView().findViewById(android.R.id.message);
|
||||||
|
text.setTextColor(textColor);
|
||||||
|
|
||||||
toast.getView().setPadding(horizontalPadding, verticalPadding, horizontalPadding, verticalPadding);
|
toast.getView().setPadding(horizontalPadding, verticalPadding, horizontalPadding, verticalPadding);
|
||||||
|
|
||||||
// this gives the toast a very subtle shadow on newer devices
|
// this gives the toast a very subtle shadow on newer devices
|
||||||
|
Loading…
x
Reference in New Issue
Block a user