am 6845da8d: Add touchable region

* commit '6845da8d7b940018c4ef77646f0028d131ed2753':
  Add touchable region
main
satok 2011-01-20 05:09:06 -08:00 committed by Android Git Automerger
commit f4a5be4ba1
1 changed files with 10 additions and 0 deletions

View File

@ -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