带有 Action 和 Uri 的 startActivity 会使应用程序崩溃

发布于 2024-12-06 18:42:10 字数 788 浏览 0 评论 0原文

我想打开一个新活动并向其传递本地 html 文件的 URI(位于项目的资产中):

public void onClick(View v) 
{
    Intent i = new Intent("com.appstudio.android.MY_ACTION",Uri.parse("file:///android_asset/sfaradi_mazon.html"));
    MainActivity.this.startActivity(i);
}

这就是我在清单中声明响应活动的方式:

<activity android:name="BlessingActivity">
        <intent-filter>
            <action android:name="com.appstudio.android.MY_ACTION"/>
            <data android:mimeType="text/html"/>
            <category android:name="android.intent.category.DEFAULT"/>
        </intent-filter>
</activity>

但由于某种原因,应用程序在 startActivity 时崩溃(行动,乌里)。

我收到 ActivityNotFoundException。找不到处理意图的活动

有什么想法吗?

谢谢!

I want to open a new activity and pass it a URI of local html file(which is in the assets of the project):

public void onClick(View v) 
{
    Intent i = new Intent("com.appstudio.android.MY_ACTION",Uri.parse("file:///android_asset/sfaradi_mazon.html"));
    MainActivity.this.startActivity(i);
}

And this is how i declared the responding activity in the Manifest:

<activity android:name="BlessingActivity">
        <intent-filter>
            <action android:name="com.appstudio.android.MY_ACTION"/>
            <data android:mimeType="text/html"/>
            <category android:name="android.intent.category.DEFAULT"/>
        </intent-filter>
</activity>

But for some reason the app is crashing at startActivity(Action, Uri).

I'm getting an ActivityNotFoundException. No Activity was found to handle the intent

Any ideas?

Thanks!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

豆芽 2024-12-13 18:42:10

您已在 中指定了 MIME 类型,但在相应的 Intent 中没有该类型。删除 元素或在 Intent 上调用 setDataAndType(),而不是在中提供 Uri构造函数。

You have specified a MIME type in the <intent-filter> but do not have it in the corresponding Intent. Either remove the <data> element or call setDataAndType() on the Intent instead of supplying the Uri in the constructor.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文