从 Android SD 卡打开地图
请帮助...我必须从 SD 卡打开 kml 类型的地图... MIME 类型为“application/vnd.google-earth.kml+xml” 所以我使用了这段代码: intent.setType(“application/vnd.google-earth.kml+xml/*”);
我收到这个错误: “没有应用程序可以执行此操作”
如何使用打开地图的应用程序?
Please help ... I have to open a Map of type kml from the sd card ...
the mime type is "application/vnd.google-earth.kml+xml"
so i used this piece of code :
intent.setType("application/vnd.google-earth.kml+xml/*");
I Got this error:
"no application can perform this action"
how to use an application that open a map ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
步骤#1:找到一个可以打开 KML 文件的应用程序。
步骤#2:在设备上安装该应用程序。
步骤 #3:再次尝试您的代码,在
Intent
中使用ACTION_VIEW
和正确的 MIME 类型(大概是您拥有的类型)。Step #1: Find an application that can open KML files.
Step #2: Install that application on the device.
Step #3: Try your code again, with
ACTION_VIEW
and the right MIME type (presumably the one you have) in theIntent
.