Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit d86b8a30 authored by TreeHugger Robot's avatar TreeHugger Robot Committed by Android (Google) Code Review
Browse files

Merge "Add a WM API to query the touch region for the input method window"

parents d05b6252 56162a0a
Loading
Loading
Loading
Loading
+6 −0
Original line number Original line Diff line number Diff line
@@ -29,6 +29,7 @@ import android.graphics.Bitmap;
import android.graphics.GraphicBuffer;
import android.graphics.GraphicBuffer;
import android.graphics.Point;
import android.graphics.Point;
import android.graphics.Rect;
import android.graphics.Rect;
import android.graphics.Region;
import android.os.Bundle;
import android.os.Bundle;
import android.os.IRemoteCallback;
import android.os.IRemoteCallback;
import android.os.ParcelFileDescriptor;
import android.os.ParcelFileDescriptor;
@@ -377,4 +378,9 @@ interface IWindowManager
     * associated with that InputConsumer.
     * associated with that InputConsumer.
     */
     */
    boolean destroyInputConsumer(String name);
    boolean destroyInputConsumer(String name);

    /**
     * Return the touch region for the current IME window, or an empty region if there is none.
     */
    Region getCurrentImeTouchRegion();
}
}
+11 −0
Original line number Original line Diff line number Diff line
@@ -6187,6 +6187,17 @@ public class WindowManagerService extends IWindowManager.Stub
        }
        }
    }
    }


    @Override
    public Region getCurrentImeTouchRegion() {
        synchronized (mWindowMap) {
            final Region r = new Region();
            if (mInputMethodWindow != null) {
                mInputMethodWindow.getTouchableRegion(r);
            }
            return r;
        }
    }

    @Override
    @Override
    public boolean hasNavigationBar() {
    public boolean hasNavigationBar() {
        return mPolicy.hasNavigationBar();
        return mPolicy.hasNavigationBar();