diff --git a/src/Controls/src/Core/Compatibility/Handlers/Shell/Android/ShellSearchView.cs b/src/Controls/src/Core/Compatibility/Handlers/Shell/Android/ShellSearchView.cs index 8af2e319b6ec..6973ad76d81a 100644 --- a/src/Controls/src/Core/Compatibility/Handlers/Shell/Android/ShellSearchView.cs +++ b/src/Controls/src/Core/Compatibility/Handlers/Shell/Android/ShellSearchView.cs @@ -256,6 +256,9 @@ protected virtual void OnSearchHandlerPropertyChanged(object sender, PropertyCha else if (e.PropertyName == SearchHandler.ClearPlaceholderIconProperty.PropertyName) { ApplyImageSource(_clearPlaceholderButton, SearchHandler.ClearPlaceholderIcon, -1, SearchHandler.TextColor?.ToPlatform()); + } + else if (e.PropertyName == SearchHandler.ClearPlaceholderEnabledProperty.PropertyName) + { UpdateClearButtonState(); } }