从首选项启动意图时出现 ActivityNotFoundException
test.class类型是否正确?怎样做?我应该怎么办?
<Preference
android:key="test"
android:title="test"
android:summary="test">
<intent android:action="test.class" > <=== **ERROR/AndroidRuntime(2384): android.content.ActivityNotFoundException: No Activity found to handle Intent**
</intent>
</Preference>
test.class type is right? How to? What should I do?
<Preference
android:key="test"
android:title="test"
android:summary="test">
<intent android:action="test.class" > <=== **ERROR/AndroidRuntime(2384): android.content.ActivityNotFoundException: No Activity found to handle Intent**
</intent>
</Preference>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我相信问题是问如何从 PreferenceScreen 启动活动。这可以通过在 XML 中使用以下定义来实现:
最后,确保活动已在清单中定义。
I believe the question is asking how to launch an activity from a PreferenceScreen. This can be achieved using the following definition in your XML:
Finally, make sure the Activity is defined in your manifest.