我已经尝试过这些方法: 1.我创建了一个带有句柄的意图过滤器
的活动<intent-filter>
<action android:name="android.intent.action.CALL" />
category android:name="android.intent.category.DEFAULT" />
</intent-filter>
但每次我尝试“致电伙伴”标准电话应用程序oppens。
我使用google.gms.actions方法创建了一个带有intent-filter句柄的活动
<activity android:name=".SearchableActivity">
<intent-filter>
<action android:name="com.google.android.gms.actions.SEARCH_ACTION"/>
<category android:name="android.intent.category.DEFAULT"/>
</intent-filter>
但仍然没有运气。 我可以使用
创建搜索查询adb shell am start -a "com.google.android.gms.actions.SEARCH_ACTION" --es query "[query keyword]" -n "com.testapp/.MainActivity"
请,任何帮助将不胜感激