Searched refs:windowInsets (Results 1 – 2 of 2) sorted by relevance
/packages/apps/WallpaperPicker2/src/com/android/wallpaper/picker/individual/ |
D | IndividualPickerActivity.java | 117 getWindow().getDecorView().setOnApplyWindowInsetsListener((view, windowInsets) -> { in onCreate() 118 view.setPadding(view.getPaddingLeft(), windowInsets.getSystemWindowInsetTop(), in onCreate() 123 WindowInsets.Builder builder = new WindowInsets.Builder(windowInsets); in onCreate() 124 builder.setSystemWindowInsets(Insets.of(windowInsets.getSystemWindowInsetLeft(), in onCreate() 125 0, windowInsets.getStableInsetRight(), in onCreate() 126 windowInsets.getSystemWindowInsetBottom())); in onCreate() 129 return windowInsets.replaceSystemWindowInsets( in onCreate() 130 windowInsets.getSystemWindowInsetLeft(), in onCreate() 131 0, windowInsets.getStableInsetRight(), in onCreate() 132 windowInsets.getSystemWindowInsetBottom()); in onCreate()
|
/packages/apps/Launcher3/quickstep/recents_ui_overrides/src/com/android/quickstep/ |
D | WindowTransformSwipeHandler.java | 686 public WindowInsets onApplyWindowInsets(View view, WindowInsets windowInsets) { in onApplyWindowInsets() argument 687 WindowInsets result = view.onApplyWindowInsets(windowInsets); in onApplyWindowInsets()
|