adb shell input keyevent APP_SWITCH //最近任务
adb shell input keyevent BACK //返回键
adb shell input keyevent HOME //home键
其他按键模拟可以查看这个类:KeyEvent.java
public static final int KEYCODE_HOME = 3;
/** Key code constant: Back key. */
public static final int KEYCODE_BACK = 4;
/** Key code constant: Call key. */
public static final int KEYCODE_CALL = 5;
/** Key code constant: End Call key. */
public static final int KEYCODE_ENDCALL = 6;