为什么我的 Android URL 主机意图过滤器不起作用?
在我的清单文件中:
<application
android:icon="@drawable/logo"
android:label="@string/app_name" >
<activity
android:configChanges="orientation|keyboardHidden"
android:name=".App"
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="jsfiddle.net"/>
</intent-filter>
</activity>
<activity android:name="com.phonegap.DroidGap" android:label="@string/app_name" android:configChanges="orientation|keyboardHidden"> <intent-filter> </intent-filter> </activity>
我尝试将用于处理 URL 方案/主机的意图过滤器内容放入其他活动中,并创建一个新活动,并制作单个意图过滤器,但它们都不起作用。 URL 总是正常加载,而不是启动我的应用程序。我使用的是 Android 3.0 和三星 Galaxy Tab。如果重要的话,这是一个基于音位间隙的应用程序。 测试
In my manifest file:
<application
android:icon="@drawable/logo"
android:label="@string/app_name" >
<activity
android:configChanges="orientation|keyboardHidden"
android:name=".App"
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="jsfiddle.net"/>
</intent-filter>
</activity>
<activity android:name="com.phonegap.DroidGap" android:label="@string/app_name" android:configChanges="orientation|keyboardHidden"> <intent-filter> </intent-filter> </activity>
I tried putting the intent filter stuff for handling the URL scheme/host in the other activity, and creating a new one, and making a single intent filter, but none of them are working. The URL always just loads as normal instead of launching my app. I'm using Android 3.0 and a samsung galaxy tab. If it matters, this is a phonegap based application.
Test
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论