为什么我的 Android URL 主机意图过滤器不起作用?

发布于 2025-01-02 14:47:21 字数 1294 浏览 0 评论 0原文

在我的清单文件中:

<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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文