Fixed issue where errant "." were appearing on droid controls due to hints. (#801)

This commit is contained in:
BradChase2011 2017-03-07 10:25:05 -05:00 коммит произвёл Rui Marinho
Родитель 917d27e079
Коммит 2b92142ab2
2 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -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;

Просмотреть файл

@ -388,7 +388,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;