Android scrolling down where there is another menu

Hello,
I have a screen where the menu at the top is working as horizontal and after it I have menu down vertically, when I do the scrolling to element that is available at the menu down like so (e.x):

AndroidElement PermissionElement = driver.findElementByAndroidUIAutomator("new 
UiScrollable(new UiSelector().scrollable(true).instance(0)).scrollIntoView(new 
UiSelector().text(\"Permissions\"))");

than the scrolling is working just on the menu that is horizontal and not on the vertical menu that appear down,
attached picture to show something like that where the small red line is where is the actual scroll is happening and not in all the screen to search for items.

is there a way to select from where to start scrolling? I thought maybe to click on element from down or move to there and than scroll, but maybe there is other ideas?
Thank you

means - select FIRST available scrolling view.

Thank you it worked :slight_smile: