diff options
author | 2011-05-20 00:42:13 -0700 | |
---|---|---|
committer | 2011-05-20 00:42:13 -0700 | |
commit | 29a4b1ac88b06ced0ceb0b36ec4aedb7692447f7 (patch) | |
tree | 0e1675dbbdb91bd84e1b4dfa54b8640dbdb1f8cc /tests/src/com/android/inputmethod/latin/SuggestTestsBase.java | |
parent | 5d7f9da99ffae1589269566ebe19ae73c8324fc9 (diff) | |
parent | e896d31bb92146379c8b7c0050ee05eec0830317 (diff) | |
download | latinime-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.java | 5 |
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); } |