1
如何攔截按鈕在SurfaceView中按下虛擬鍵盤?這樣做。但沒有什麼不可能的。請幫助。如何攔截虛擬鍵盤上的擊鍵?
InputMethodManager inputMgr = (InputMethodManager)getSystemService(Context.INPUT_METHOD_SERVICE);
inputMgr.toggleSoftInput(0, 0);
inputMgr.showSoftInput(mySurface, 0);
public class MySurface extends SurfaceView implements SurfaceHolder.Callback, View.OnTouchListener, OnKeyboardActionListener {...
我需要在印刷機SurfaceView中捕獲它。我不必活動EditText。 – GPPSoft