HomeSort by relevance Sort by last modified time
    Searched refs:systemInsets (Results 1 - 4 of 4) sorted by null

  /developers/build/prebuilts/gradle/XYZTouristAttractions/Shared/src/main/java/com/example/android/xyztouristattractions/common/
Utils.java 191 * @param systemInsets the system insets
194 public static Rect calculateBottomInsetsOnRoundDevice(Display display, Rect systemInsets) {
197 int width = size.x + systemInsets.left + systemInsets.right;
198 int height = size.y + systemInsets.top + systemInsets.bottom;
204 int bottomInset = systemInsets.bottom > minInset ? systemInsets.bottom : minInset;
  /developers/samples/android/wearable/wear/XYZTouristAttractions/Shared/src/main/java/com/example/android/xyztouristattractions/common/
Utils.java 192 * @param systemInsets the system insets
195 public static Rect calculateBottomInsetsOnRoundDevice(Display display, Rect systemInsets) {
198 int width = size.x + systemInsets.left + systemInsets.right;
199 int height = size.y + systemInsets.top + systemInsets.bottom;
205 int bottomInset = systemInsets.bottom > minInset ? systemInsets.bottom : minInset;
  /development/samples/browseable/XYZTouristAttractions/Shared/src/com.example.android.xyztouristattractions.common/
Utils.java 191 * @param systemInsets the system insets
194 public static Rect calculateBottomInsetsOnRoundDevice(Display display, Rect systemInsets) {
197 int width = size.x + systemInsets.left + systemInsets.right;
198 int height = size.y + systemInsets.top + systemInsets.bottom;
204 int bottomInset = systemInsets.bottom > minInset ? systemInsets.bottom : minInset;
  /cts/tests/tests/widget/src/android/widget/cts/
MagnifierTest.java 439 final Insets systemInsets = mLayout.getRootWindowInsets().getSystemWindowInsets();
442 assertEquals(systemInsets.left, magnifierCoords.x, PIXEL_COMPARISON_DELTA);
443 assertEquals(systemInsets.top, magnifierCoords.y, PIXEL_COMPARISON_DELTA);
457 final Insets systemInsets = mLayout.getRootWindowInsets().getSystemWindowInsets();
461 - systemInsets.right - mMagnifier.getWidth(),
464 - systemInsets.bottom - mMagnifier.getHeight(),
    [all...]

Completed in 665 milliseconds