Adapt uiautomator for low resolution 720*1280

In APP Info, when you slide the screen to find the "internal storage"
text, it will be go beyond the screen of 720*1280.

So cannot use scrollTextIntoView to find the full match.

Bug: 229213834
Test:run cts CtsAppSecurityHostTestCases pass

Change-Id: Ia92d727009f502643a3bf1a9ba3e89dc394d25b8
diff --git a/hostsidetests/appsecurity/test-apps/StorageApp/src/com/android/cts/storageapp/StorageTest.java b/hostsidetests/appsecurity/test-apps/StorageApp/src/com/android/cts/storageapp/StorageTest.java
index 42dfd43..cdd9536 100644
--- a/hostsidetests/appsecurity/test-apps/StorageApp/src/com/android/cts/storageapp/StorageTest.java
+++ b/hostsidetests/appsecurity/test-apps/StorageApp/src/com/android/cts/storageapp/StorageTest.java
@@ -122,7 +122,8 @@
             UiScrollable localObject = new UiScrollable(new UiSelector().scrollable(true).instance(j));
             ((UiScrollable) localObject).setMaxSearchSwipes(10);
             try {
-                 ((UiScrollable) localObject).scrollTextIntoView("internal storage");
+                 ((UiScrollable) localObject).scrollIntoView(
+                   new UiSelector().textContains("internal storage"));
             } catch (UiObjectNotFoundException localUiObjectNotFoundException) {
                 // Scrolling can fail if the UI is not scrollable
             }