带有 Action 和 Uri 的 startActivity 会使应用程序崩溃
我想打开一个新活动并向其传递本地 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您已在
中指定了 MIME 类型,但在相应的Intent
中没有该类型。删除元素或在
Intent
上调用setDataAndType()
,而不是在中提供Uri
构造函数。You have specified a MIME type in the
<intent-filter>
but do not have it in the correspondingIntent
. Either remove the<data>
element or callsetDataAndType()
on theIntent
instead of supplying theUri
in the constructor.