这是我的代码:
if(textNomeGiocatore.getText().toString().equals("")){
InputMethodManager imm = (InputMethodManager)getSystemService(
Context.INPUT_METHOD_SERVICE);
imm.hideSoftInputFromWindow(textNomeGiocatore.getWindowToken(), 0);
textNomeGiocatore.setError("Nome giocatore necessario");
}
我行中的错误:
textNomeGiocatore.setError("Nome giocatore necessario");
这是错误:
android.view.WindowManager$BadTokenException: Unable to add window -- token android.view.ViewRootImpl$W@426940a8 is not valid; is your activity running?
我尝试后延迟不resoult错误消息。
有人能帮助我吗?