重写onResume
public void onResume(){
super.onResume();
Timer timer = new Timer();
timer.schedule(new TimerTask(){
public void run(){
InputMethodManager inputMethodManager = (InputMethodManager)getSystemService(context.INPUT_METHOD_SERVICE);
inputMethod.toggleSoftInput(0,InputMethodManager.HIDE_NOT_ALWAYS);
}
},100);
}
即可进入Activity时调出键盘