aboutsummaryrefslogtreecommitdiffstats
path: root/tests/src/com/android/inputmethod/latin/SuggestTestsBase.java
diff options
context:
space:
mode:
authorTadashi G. Takaoka <takaoka@google.com>2011-05-20 00:42:13 -0700
committerAndroid (Google) Code Review <android-gerrit@google.com>2011-05-20 00:42:13 -0700
commit29a4b1ac88b06ced0ceb0b36ec4aedb7692447f7 (patch)
tree0e1675dbbdb91bd84e1b4dfa54b8640dbdb1f8cc /tests/src/com/android/inputmethod/latin/SuggestTestsBase.java
parent5d7f9da99ffae1589269566ebe19ae73c8324fc9 (diff)
parente896d31bb92146379c8b7c0050ee05eec0830317 (diff)
downloadlatinime-29a4b1ac88b06ced0ceb0b36ec4aedb7692447f7.tar.gz
latinime-29a4b1ac88b06ced0ceb0b36ec4aedb7692447f7.tar.xz
latinime-29a4b1ac88b06ced0ceb0b36ec4aedb7692447f7.zip
Merge "Reload keyboard after SoftInputWindow size changed"
Diffstat (limited to 'tests/src/com/android/inputmethod/latin/SuggestTestsBase.java')
-rw-r--r--tests/src/com/android/inputmethod/latin/SuggestTestsBase.java5
1 files changed, 3 insertions, 2 deletions
diff --git a/tests/src/com/android/inputmethod/latin/SuggestTestsBase.java b/tests/src/com/android/inputmethod/latin/SuggestTestsBase.java
index 64f26743e..cf4ccfeaa 100644
--- a/tests/src/com/android/inputmethod/latin/SuggestTestsBase.java
+++ b/tests/src/com/android/inputmethod/latin/SuggestTestsBase.java
@@ -38,10 +38,11 @@ public class SuggestTestsBase extends AndroidTestCase {
mTestPackageFile = new File(getTestContext().getApplicationInfo().sourceDir);
}
- protected static KeyboardId createKeyboardId(Locale locale) {
+ protected KeyboardId createKeyboardId(Locale locale) {
+ final int displayWidth = getContext().getResources().getDisplayMetrics().widthPixels;
return new KeyboardId(locale.toString() + " keyboard",
com.android.inputmethod.latin.R.xml.kbd_qwerty, KeyboardView.COLOR_SCHEME_WHITE,
- locale, Configuration.ORIENTATION_LANDSCAPE, KeyboardId.MODE_TEXT,
+ locale, displayWidth, Configuration.ORIENTATION_LANDSCAPE, KeyboardId.MODE_TEXT,
new EditorInfo(), false, false, false, false);
}