如需验证您的应用可以对您想支持的 Intent 作出响应,可以使用 adb 工具来触发特定 Intent:
设置一台用于开发的 Android 设备,或使用一台虚拟设备。
安装一个处理您想支持的 Intent 的应用版本。
使用 adb 触发一个 Intent:
adb shell am start -a -t -d \
-e -n
例如:
adb shell am start -a android.intent.action.DIAL \
-d tel:555-5555 -n org.example.MyApp/.MyActivity
如果您定义了必需的 Intent 过滤器,您的应用应该会处理 Intent。