1 /* 2 * Copyright (C) 2024 The Android Open Source Project 3 * 4 * Licensed under the Apache License, Version 2.0 (the "License"); 5 * you may not use this file except in compliance with the License. 6 * You may obtain a copy of the License at 7 * 8 * http://www.apache.org/licenses/LICENSE-2.0 9 * 10 * Unless required by applicable law or agreed to in writing, software 11 * distributed under the License is distributed on an "AS IS" BASIS, 12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 * See the License for the specific language governing permissions and 14 * limitations under the License. 15 */ 16 17 package com.android.wm.shell.desktopmode 18 19 import android.view.SurfaceControl 20 import com.android.window.flags.Flags 21 import com.android.wm.shell.common.DisplayImeController 22 import com.android.wm.shell.common.DisplayImeController.ImePositionProcessor.IME_ANIMATION_DEFAULT 23 import com.android.wm.shell.sysui.ShellInit 24 25 /** Handles the interactions between IME and desktop tasks */ 26 class DesktopImeHandler( 27 private val displayImeController: DisplayImeController, 28 shellInit: ShellInit, 29 ) : DisplayImeController.ImePositionProcessor { 30 31 init { 32 shellInit.addInitCallback(::onInit, this) 33 } 34 onInitnull35 private fun onInit() { 36 if (Flags.enableDesktopImeBugfix()) { 37 displayImeController.addPositionProcessor(this) 38 } 39 } 40 onImeStartPositioningnull41 override fun onImeStartPositioning( 42 displayId: Int, 43 hiddenTop: Int, 44 shownTop: Int, 45 showing: Boolean, 46 isFloating: Boolean, 47 t: SurfaceControl.Transaction?, 48 ): Int { 49 return IME_ANIMATION_DEFAULT 50 } 51 } 52