此问题已被提出超过10次,例如:
我尝试了10多个链接和教程,似乎我错过了一些东西。
我执行以下操作:
然后我创建了以下Android清单:
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.my_test"
android:versionCode="1"
android:versionName="1.0" >
<uses-sdk
android:minSdkVersion="18"
android:targetSdkVersion="18" />
<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<activity
android:name=".MainActivity"
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>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
<data android:scheme="http" android:host="planb.site11.com"/>
</intent-filter>
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
<data android:scheme="my.special.scheme" android:host="path" />
</intent-filter>
</activity>
</application>
然后我输入一个我创建的小网页,希望链接能够正常工作(在nexus 5上使用谷歌浏览器) 这是页面(他的来源非常简单) http://planb.site11.com/
然后点击链接,但没有任何内容可以打开我的应用:(
我缺少什么? 我如何在我的Android中看到哪些应用程序签署了哪些意图?
感谢。