diff options
author | 2011-06-22 22:45:03 +0900 | |
---|---|---|
committer | 2011-06-22 22:45:03 +0900 | |
commit | a93d27d6b87c29cb6292d1dd1223a4e42cca07d9 (patch) | |
tree | d40ee6a35d77262966df692e6560411ca11b66e4 /tests/src/com/android/inputmethod/latin/SuggestTestsBase.java | |
parent | b947c73dccd2035b786dbfd0e86cc746be3e1718 (diff) | |
download | latinime-a93d27d6b87c29cb6292d1dd1223a4e42cca07d9.tar.gz latinime-a93d27d6b87c29cb6292d1dd1223a4e42cca07d9.tar.xz latinime-a93d27d6b87c29cb6292d1dd1223a4e42cca07d9.zip |
Remove colorScheme attribute from KeyboardView
Change-Id: I9de118e8be60b9a6fe1aecc00332ba08872db918
Diffstat (limited to 'tests/src/com/android/inputmethod/latin/SuggestTestsBase.java')
-rw-r--r-- | tests/src/com/android/inputmethod/latin/SuggestTestsBase.java | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/tests/src/com/android/inputmethod/latin/SuggestTestsBase.java b/tests/src/com/android/inputmethod/latin/SuggestTestsBase.java index 28766c21f..bb2a6fe40 100644 --- a/tests/src/com/android/inputmethod/latin/SuggestTestsBase.java +++ b/tests/src/com/android/inputmethod/latin/SuggestTestsBase.java @@ -16,15 +16,14 @@ package com.android.inputmethod.latin; -import com.android.inputmethod.keyboard.KeyboardId; -import com.android.inputmethod.keyboard.KeyboardView; - import android.content.res.AssetFileDescriptor; import android.content.res.Configuration; import android.test.AndroidTestCase; import android.text.TextUtils; import android.view.inputmethod.EditorInfo; +import com.android.inputmethod.keyboard.KeyboardId; + import java.io.File; import java.io.InputStream; import java.util.Locale; @@ -41,8 +40,8 @@ public class SuggestTestsBase extends AndroidTestCase { 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, displayWidth, KeyboardId.MODE_TEXT, + com.android.inputmethod.latin.R.xml.kbd_qwerty, locale, + Configuration.ORIENTATION_LANDSCAPE, displayWidth, KeyboardId.MODE_TEXT, new EditorInfo(), false, false, false, false); } |