Searched refs:windowInsets (Results 1 – 4 of 4) sorted by relevance
/packages/apps/WallpaperPicker2/src/com/android/wallpaper/picker/individual/ |
D | IndividualPickerActivity.java | 119 .setOnApplyWindowInsetsListener((view, windowInsets) -> { in onCreate() 120 view.setPadding(view.getPaddingLeft(), windowInsets.getSystemWindowInsetTop(), in onCreate() 125 WindowInsets.Builder builder = new WindowInsets.Builder(windowInsets); in onCreate() 126 builder.setSystemWindowInsets(Insets.of(windowInsets.getSystemWindowInsetLeft(), in onCreate() 127 0, windowInsets.getStableInsetRight(), in onCreate() 128 windowInsets.getSystemWindowInsetBottom())); in onCreate() 131 return windowInsets.replaceSystemWindowInsets( in onCreate() 132 windowInsets.getSystemWindowInsetLeft(), in onCreate() 133 0, windowInsets.getStableInsetRight(), in onCreate() 134 windowInsets.getSystemWindowInsetBottom()); in onCreate()
|
/packages/apps/WallpaperPicker2/src/com/android/wallpaper/picker/ |
D | TopLevelPickerActivity.java | 252 .setOnApplyWindowInsetsListener((view, windowInsets) -> { in initializeMobile() 253 view.setPadding(view.getPaddingLeft(), windowInsets.getSystemWindowInsetTop(), in initializeMobile() 258 WindowInsets.Builder builder = new WindowInsets.Builder(windowInsets); in initializeMobile() 259 builder.setSystemWindowInsets(Insets.of(windowInsets.getSystemWindowInsetLeft(), in initializeMobile() 260 0, windowInsets.getStableInsetRight(), in initializeMobile() 261 windowInsets.getSystemWindowInsetBottom())); in initializeMobile() 264 return windowInsets.replaceSystemWindowInsets( in initializeMobile() 265 windowInsets.getSystemWindowInsetLeft(), in initializeMobile() 266 0, windowInsets.getStableInsetRight(), in initializeMobile() 267 windowInsets.getSystemWindowInsetBottom()); in initializeMobile()
|
D | PreviewFragment.java | 242 view.setOnApplyWindowInsetsListener((v, windowInsets) -> { in onCreateView() argument 244 toolbar.getPaddingTop() + windowInsets.getSystemWindowInsetTop(), in onCreateView() 248 mBottomSheet.getPaddingBottom() + windowInsets.getSystemWindowInsetBottom()); in onCreateView() 249 WindowInsets.Builder builder = new WindowInsets.Builder(windowInsets); in onCreateView() 250 builder.setSystemWindowInsets(Insets.of(windowInsets.getSystemWindowInsetLeft(), in onCreateView() 251 0, windowInsets.getStableInsetRight(), 0)); in onCreateView()
|
/packages/apps/Launcher3/quickstep/recents_ui_overrides/src/com/android/quickstep/ |
D | WindowTransformSwipeHandler.java | 524 public WindowInsets onApplyWindowInsets(View view, WindowInsets windowInsets) { in onApplyWindowInsets() argument 525 WindowInsets result = view.onApplyWindowInsets(windowInsets); in onApplyWindowInsets()
|