Skip to content
Snippets Groups Projects
Commit cc7ce4ea authored by Tadashi G. Takaoka's avatar Tadashi G. Takaoka
Browse files

Cleanup qwerty expected layout definition a bit

Bug: 13017434
Change-Id: I21152679986924fa56966f5476c6e797d92da57c
parent be1c44c6
No related branches found
No related tags found
No related merge requests found
...@@ -36,17 +36,17 @@ public final class Qwerty extends LayoutBase { ...@@ -36,17 +36,17 @@ public final class Qwerty extends LayoutBase {
ExpectedKey[][] getCommonAlphabetLayout(final boolean isPhone) { return ALPHABET_COMMON; } ExpectedKey[][] getCommonAlphabetLayout(final boolean isPhone) { return ALPHABET_COMMON; }
private static final ExpectedKey[][] ALPHABET_COMMON = new ExpectedKeyboardBuilder() private static final ExpectedKey[][] ALPHABET_COMMON = new ExpectedKeyboardBuilder()
.setLabelsOfRow(1, "q", "w", "e", "r", "t", "y", "u", "i", "o", "p") .setKeysOfRow(1,
.setMoreKeysOf("q", "1") key("q", moreKey("1")),
.setMoreKeysOf("w", "2") key("w", moreKey("2")),
.setMoreKeysOf("e", "3") key("e", moreKey("3")),
.setMoreKeysOf("r", "4") key("r", moreKey("4")),
.setMoreKeysOf("t", "5") key("t", moreKey("5")),
.setMoreKeysOf("y", "6") key("y", moreKey("6")),
.setMoreKeysOf("u", "7") key("u", moreKey("7")),
.setMoreKeysOf("i", "8") key("i", moreKey("8")),
.setMoreKeysOf("o", "9") key("o", moreKey("9")),
.setMoreKeysOf("p", "0") key("p", moreKey("0")))
.setLabelsOfRow(2, "a", "s", "d", "f", "g", "h", "j", "k", "l") .setLabelsOfRow(2, "a", "s", "d", "f", "g", "h", "j", "k", "l")
.setLabelsOfRow(3, "z", "x", "c", "v", "b", "n", "m") .setLabelsOfRow(3, "z", "x", "c", "v", "b", "n", "m")
.build(); .build();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment