summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Platform.Android/ViewRenderer.cs
diff options
context:
space:
mode:
authorBradChase2011 <brchase07@yahoo.com>2017-03-07 10:25:05 -0500
committerRui Marinho <me@ruimarinho.net>2017-03-07 15:25:05 +0000
commit2b92142ab2a501de71d3572efc0e5deb2b7bae9a (patch)
tree263f7370b5cff715cbb8091c821c86b54f530a05 /Xamarin.Forms.Platform.Android/ViewRenderer.cs
parent917d27e079a23c96ee3201cc7f35069cd837ed9a (diff)
downloadxamarin-forms-2b92142ab2a501de71d3572efc0e5deb2b7bae9a.tar.gz
xamarin-forms-2b92142ab2a501de71d3572efc0e5deb2b7bae9a.tar.bz2
xamarin-forms-2b92142ab2a501de71d3572efc0e5deb2b7bae9a.zip
Fixed issue where errant "." were appearing on droid controls due to hints. (#801)
Diffstat (limited to 'Xamarin.Forms.Platform.Android/ViewRenderer.cs')
-rw-r--r--Xamarin.Forms.Platform.Android/ViewRenderer.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Xamarin.Forms.Platform.Android/ViewRenderer.cs b/Xamarin.Forms.Platform.Android/ViewRenderer.cs
index 31a9c282..ee5913b1 100644
--- a/Xamarin.Forms.Platform.Android/ViewRenderer.cs
+++ b/Xamarin.Forms.Platform.Android/ViewRenderer.cs
@@ -223,7 +223,7 @@ namespace Xamarin.Forms.Platform.Android
if (_defaultHint == null)
_defaultHint = textView.Hint;
- var elemValue = string.Join(". ", (string)Element.GetValue(Accessibility.NameProperty), (string)Element.GetValue(Accessibility.HintProperty));
+ var elemValue = string.Join((String.IsNullOrWhiteSpace((string)(Element.GetValue(Accessibility.NameProperty))) || String.IsNullOrWhiteSpace((string)(Element.GetValue(Accessibility.HintProperty)))) ? "" : ". ", (string)Element.GetValue(Accessibility.NameProperty), (string)Element.GetValue(Accessibility.HintProperty));
if (!string.IsNullOrWhiteSpace(elemValue))
textView.Hint = elemValue;