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

Commit 6845da8d authored by satok's avatar satok
Browse files

Add touchable region

Bug: 3238092

Change-Id: I3cda3106a61c40c3b66741dc38c9ff4cc55f487b
parent 439f2dbe
Loading
Loading
Loading
Loading
+10 −0
Original line number Diff line number Diff line
@@ -27,6 +27,7 @@ import com.android.inputmethod.latin.Utils.RingCharBuffer;
import com.android.inputmethod.voice.VoiceIMEConnector;

import android.app.AlertDialog;
import android.app.Dialog;
import android.content.BroadcastReceiver;
import android.content.Context;
import android.content.DialogInterface;
@@ -35,6 +36,7 @@ import android.content.IntentFilter;
import android.content.SharedPreferences;
import android.content.res.Configuration;
import android.content.res.Resources;
import android.graphics.Region;
import android.inputmethodservice.InputMethodService;
import android.media.AudioManager;
import android.os.Debug;
@@ -862,6 +864,14 @@ public class LatinIME extends InputMethodService implements KeyboardActionListen
        if (!isFullscreenMode()) {
            outInsets.contentTopInsets = outInsets.visibleTopInsets;
        }
        KeyboardView inputView = mKeyboardSwitcher.getInputView();
        if (inputView != null) {
            // Screen's heightPixels may be too big, but want to make
            // it large enough to cover status bar in any cases.
            outInsets.touchableInsets = InputMethodService.Insets.TOUCHABLE_INSETS_REGION;
            outInsets.touchableRegion.set(
                    0, 0, inputView.getWidth(), getResources().getDisplayMetrics().heightPixels);
        }
    }

    @Override