From 6845da8d7b940018c4ef77646f0028d131ed2753 Mon Sep 17 00:00:00 2001 From: satok Date: Thu, 20 Jan 2011 17:33:10 +0900 Subject: [PATCH] Add touchable region Bug: 3238092 Change-Id: I3cda3106a61c40c3b66741dc38c9ff4cc55f487b --- java/src/com/android/inputmethod/latin/LatinIME.java | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/java/src/com/android/inputmethod/latin/LatinIME.java b/java/src/com/android/inputmethod/latin/LatinIME.java index 4e1c56cba..bc42dff84 100644 --- a/java/src/com/android/inputmethod/latin/LatinIME.java +++ b/java/src/com/android/inputmethod/latin/LatinIME.java @@ -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