adb shell am startservice -a com.lt.test.action.ONESERVICE adb shell am startservice com.android.music/.MediaPlaybackService 1. 2. 启动广播 adb shell am broadcast -a android.intent.action.MASTER_CLEAR(恢复出厂设置的方法,会清除内存所有内容) adb shell am broadcast -n com.lt.test/.MyBroadcas...
杀app的进程:adb shell am kill <packageName> 强制停止一切:adb shell am force-stop <packageName> 启动服务:adb shell am startservice 停止服务:adb shell am stopservice 打开简书: adb shell am start -a android.intent.action.VIEW -d http://www.jianshu.cn/ 拨打电话: adb shell am start -a ...
am全称activity manager,你能使用am参数去模拟各种系统的行为,例如去启动一个activity,强制停止进程,发送广播进程,修改设备屏幕属性等等。 例如: adb shell am start -a android.intent.action.VIEW 关于am参数的一些命令: start [options] :启动activity通过指定的intent参数。具体intent参数参照官方表。 startservice [...
adb shell am force-stop package 结束某包名代表的应用 adb shell am startservice 启动一个服务 若提示失败,可输入命令adb shell am start-foreground-service -n com.test.demo/com.test.demo.ForegroundServiceDemo 即使用start-foreground-service来替换startservice可以解决这个问题。原因:Android O 推出了...
adb shell am startservice -n <package_name>/.<service_class_name> 也可: adb shell am startservice -a "android.intent.action.CALL" 9、发送广播: adb shell am broadcast -a "android.intent.action.AdupsFota.WriteCommandReceiver" 广播可以带上不同类型的参数,–es为string参数类型,–ei为int参数类...
2. adb shell am startservice [options]intent 启动由 intent 指定的 Service startservice [options] intent 启动由 intent 指定的 Service。 请参阅 intent 参数的规范。 具体选项包括: --user user_id | current:指定要作为哪个用户运行;如果未指定,则作为当前用户运行。
或adb shell am startservice-a com.example.myservice//这里 -a 表示动作,就是你在 Androidmanifest 里定义的 3.发送一个广播:adb shell am broadcast -a <广播动作> adb shell am broadcast -a com.example.mybroadcast 4.强制关闭一个应用程序:adb shell am force-stop <PACKAGE> ...
命令窗口通过adb shell 进入android 的Linux命令界面,输入am -help看到如下信息: 我们可以通过命令启动android中的Activity,Service,BroadcastReceiver 等组件 拨打一个电话: am start -a android.intent.action.CALL -d tel:10086 这里-a表示动作,-d表述传入的数据,还有-t表示传入的类型。
adb shell am broadcast -a ${broad_action_name} 4. 启动服务 adb shell am startservice -n ${your_package_name}/${your_service_name} //停止服务 adb shell am stopservice -n ${your_package_name}/${your_service_name} 2. 启动安装应用对话框 ...
举例:adb shell am startservice -n com.lt.am/.MyAMService [adb shell am broadcast] -a <action_name> 作用:发送一个广播 举例:adb shell am broadcast -a "action_finish" (发送一个广播去关闭一个activity) 作用:恢复出厂设置的方法,会清除内存所有内容 ...