nativescript-toast
Advanced tools
Comparing version
@@ -0,1 +1,9 @@ | ||
<a name="1.4.4"></a> | ||
## [1.4.4](https://github.com/TobiasHennig/nativescript-toast/compare/v1.4.3...v1.4.4) (2017-01-03) | ||
### Feature | ||
* **#19:** Center-align text on Android | ||
<a name="1.4.3"></a> | ||
@@ -2,0 +10,0 @@ ## [1.4.3](https://github.com/TobiasHennig/nativescript-toast/compare/9cf55f5...v1.4.3) (2016-12-01) |
{ | ||
"name": "nativescript-toast", | ||
"version": "1.4.3", | ||
"version": "1.4.4", | ||
"description": "A NativeScript Toast Plugin for Android and iOS apps.", | ||
@@ -5,0 +5,0 @@ "main": "toast.js", |
@@ -12,5 +12,13 @@ /*global require, exports, android*/ | ||
var d = (typeof (duration) === "string" && duration[0] === "l") ? Toast.LENGTH_LONG : Toast.LENGTH_SHORT; | ||
return Toast.makeText(application.android.context, text, d); | ||
var centeredText = new android.text.SpannableString(text); | ||
centeredText.setSpan( | ||
new android.text.style.AlignmentSpan.Standard(android.text.Layout.Alignment.ALIGN_CENTER), | ||
0, | ||
text.length - 1, | ||
android.text.Spannable.SPAN_INCLUSIVE_INCLUSIVE); | ||
return Toast.makeText(application.android.context, centeredText, d); | ||
} | ||
exports.makeText = makeText; |
10250
4.8%69
9.52%