【发布时间】:2009-06-27 21:55:42
【问题描述】:
我无法让 DDMS 加载任何 KML 文件。
我有一个 KML 文件,例如其中包含以下内容:
<?xml version="1.0" encoding="UTF-8"?>
<kml xmlns="http://www.opengis.net/kml/2.2">
<Placemark>
<name>Simple placemark</name>
<description>Attached to the ground. Intelligently places itself
at the height of the underlying terrain.</description>
<Point>
<coordinates>-122.0822035425683,37.42228990140251,0</coordinates>
</Point>
</Placemark>
</kml>
http://developer.android.com/guide/developing/tools/ddms.html 的文档 似乎表明我只需要启动我的应用程序并启动 DDMS 并加载 KML。这行不通。
我什至尝试了同一链接中建议的 Google 地球解决方案。
我正在使用 SDK 1.5_r2。我做错了什么或遗漏了什么?
【问题讨论】: