我为我的应用程序创建了可浏览的intent和scheme attribute,它可以在HTC Desire S中完美运行。但是当我点击浏览器上的链接时,我的三星Galaxy Tab 2无法检测到过滤器。这是我的清单:
<application
android:debuggable="true"
android:icon="@drawable/icon"
android:label="@string/app_name" >
<activity
android:name="MainActivity"
android:label="@string/app_name"
android:launchMode="singleTask"
android:screenOrientation="portrait" >
<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:host="xxx.xxx.com"
android:pathPrefix="/xxx/xxx"
android:scheme="http" />
</intent-filter>
</activity>
是否有人使用三星Galaxy Tab具有相同的体验?谢谢。