Вам необходимо изменить макет на свой объект клавиатуры в InputManagerService. Затем вам нужно аннулировать все ключи, чтобы клавиатура была перерисована. Как так:
public class MyKeyboard extends InputMethodService implements KeyboardView.OnKeyboardActionListener
{
private KeyboardView myKeyboardView;
private Keyboard myKeyboard;
public View onCreateInputView()
{
viewOfKeyboard = (KeyboardView)getLayoutInflater().inflate(R.layout.keyboard1, null);
theKeyboardLayout = new Keyboard(this, R.xml.keyboardlayout);
viewOfKeyboard.setKeyboard(theKeyboardLayout);
viewOfKeyboard.setOnKeyboardActionListener(this);
return myKeyboardView;
}
public void swipeRight()
{
if(isQwerty)
{
myKeyboard = new Keyboard(this, R.xml.numeric);
//Creates a new keyboard object.
myKeyboardView.setKeyboard(myKeyboard);
//Assigns the new keyboard object to the keyboard view
myKeyboardView.invalidateAllKeys();
//Makes android redraw the keyboard view, with the new layout.
isqwerty = false;
}
else
{
myKeyboard = new Keyboard(this, R.xml.qwerty);
myKeyboardView.setKeyboard(myKeyboard);
myKeyboardView.invalidateAllKeys();
isqwerty = true;
}
//.........the rest of MyKeyboard's methods
}
Это работает ... Спасибо большое :) – jelic98
Нет проблем. :). –