如何为隐式导航意图注册我的导航应用程序?

时间:2012-08-29 10:42:59

标签: android android-intent navigation implicit

我希望通过其他应用程序的隐式意图来调用我的导航应用程序。所以我想我需要在其Manifest中“注册”我的app这样的导航意图。但我怎样才能“注册”为导航应用程序?我想intent标签必须遵循特定的规则,否则它将无效。

1 个答案:

答案 0 :(得分:0)

应该是这个: http://www.openintents.org/en/node/820

我认为您必须在manifest.xml中注册它,例如:

<intent-filter>
  <action android:name="android.intent.action.VIEW" />
  <data android:scheme="google.navigation"/>
</intent-filter>