在Android浏览器中建立链接,启动我的应用程序?
<a href="anton://useful_info_for_anton_app">click me!</a>
<a href="market://search?q=pname:com.nytimes.android">click me!</a>
最新情况:<intent-filter>
<intent-filter>
AndroidManifest.xml
<activity android:name=".AntonWorld" android:label="@string/app_name"> <intent-filter> <action android:name="android.intent.action.MAIN" /> <category android:name="android.intent.category.LAUNCHER" /> </intent-filter> <intent-filter> <data android:scheme="anton" /> <action android:name="android.intent.action.VIEW" /> <category android:name="android.intent.category.BROWSABLE" /> <category android:name="android.intent.category.DEFAULT" /> </intent-filter></activity>
临摹微笑
相关分类