зеркало из https://github.com/DeGsoft/maui-linux.git
[Android] Avoid acting on a disposed reference (#4780)
This commit is contained in:
Родитель
882945b275
Коммит
ef77b19832
|
@ -266,9 +266,13 @@ namespace Xamarin.Forms.Platform.Android
|
|||
var handler = new Handler(looper);
|
||||
handler.Post(() =>
|
||||
{
|
||||
if (Control == null || Control.IsDisposed())
|
||||
return;
|
||||
|
||||
if (Control is IPopupTrigger popupElement)
|
||||
popupElement.ShowPopupOnFocus = true;
|
||||
Control?.RequestFocus();
|
||||
|
||||
Control.RequestFocus();
|
||||
});
|
||||
}
|
||||
else
|
||||
|
|
Загрузка…
Ссылка в новой задаче