diff options
author | 2011-12-13 17:30:51 +0900 | |
---|---|---|
committer | 2011-12-14 16:28:31 +0900 | |
commit | f86109ca563df283b336c62853533c54134dfc56 (patch) | |
tree | 7a5ddd9831e636b699165390fdf39c6ee1adf898 /java/src/com/android/inputmethod/latin/MoreSuggestions.java | |
parent | cfe264bfee15344282f4a2f42cfc7ee905f0eba8 (diff) | |
download | latinime-f86109ca563df283b336c62853533c54134dfc56.tar.gz latinime-f86109ca563df283b336c62853533c54134dfc56.tar.xz latinime-f86109ca563df283b336c62853533c54134dfc56.zip |
Utilize KeyboardSet XML definitions
This change introduces KeyboardSet and SubKeyboard XML definitions to
represent a set of keyboard layouts.
Bug: 5002108
Bug: 5679585
Change-Id: Ib6c8d5936187381bb6725c9fe574e93871c01a86
Diffstat (limited to 'java/src/com/android/inputmethod/latin/MoreSuggestions.java')
-rw-r--r-- | java/src/com/android/inputmethod/latin/MoreSuggestions.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/java/src/com/android/inputmethod/latin/MoreSuggestions.java b/java/src/com/android/inputmethod/latin/MoreSuggestions.java index 9a59ef2e0..86072b64b 100644 --- a/java/src/com/android/inputmethod/latin/MoreSuggestions.java +++ b/java/src/com/android/inputmethod/latin/MoreSuggestions.java @@ -178,7 +178,7 @@ public class MoreSuggestions extends Keyboard { int minWidth, int maxRow) { final Keyboard keyboard = KeyboardSwitcher.getInstance().getLatinKeyboard(); final int xmlId = R.xml.kbd_suggestions_pane_template; - load(keyboard.mId.cloneWithNewXml(mResources.getResourceEntryName(xmlId), xmlId)); + load(keyboard.mId.cloneWithNewXml(xmlId)); mParams.mVerticalGap = mParams.mTopPadding = keyboard.mVerticalGap / 2; final int count = mParams.layout(suggestions, fromPos, maxWidth, minWidth, maxRow, |