我可以从资源中解析 uri 吗?
// startActivity(new Intent(Intent.ACTION_VIEW, Uri.parse(getString(R.string.donate_url))));
startActivity(new Intent(Intent.ACTION_VIEW, Uri.parse("http://www.google.com")));
当我使用第一个时,应用程序将在模拟器中崩溃,但第二个运行良好,我该如何修复第一个?
// startActivity(new Intent(Intent.ACTION_VIEW, Uri.parse(getString(R.string.donate_url))));
startActivity(new Intent(Intent.ACTION_VIEW, Uri.parse("http://www.google.com")));
When I use the first,app will crash in emulator but the second run well, how can I fix the first?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
两条线路都工作正常..
在 2.1 模拟器中测试...
使用 donate_url= "http://www.google.com"
您所在的网址一定有问题使用...
检查日志猫,如 Pentium10 所说。
both the lines are working fine..
tested in 2.1 emulator...
with the donate_url= "http://www.google.com"
there must be problem with the url you are using...
check log cat as Pentium10 said.