[Android] fix tabs from element with a tabstop false (#4362)

This commit is contained in:
Pavel Yakovlev 2018-11-23 14:17:53 +03:00 коммит произвёл Rui Marinho
Родитель e7bf945978
Коммит 9b10e2dbb4
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -149,7 +149,7 @@ namespace Xamarin.Forms.Platform.Android
int maxAttempts = 0;
var tabIndexes = element?.GetTabIndexesOnParentPage(out maxAttempts);
if (tabIndexes == null)
return null;
return base.FocusSearch(focused, direction);
int tabIndex = element.TabIndex;
AView control = null;