在后台置android 程序

能否通过一个 adb 命令把一个程序放在后台?我有一个程序调用 google 导航,我想把这个 google 导航使用一个 adb 命令放到后台。
我不想返回到主屏幕,想让从google 导航中调用的程序仍然在前台位置。
代码如下:

adb shell am force-stop com.google.android.apps.maps

但是上面的命令会强行关闭程序,而不把程序放在后台。

adb shell input keyevent 3  包名

你的就是 adb shell input keyevent 3 com.google.android.apps.maps