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を読み込むだけでよいことが示されているようです。それはうまくいきません。
同じリンクで提案されているGoogleEarthソリューションも試してみました。
SDK1.5_r2を使用しています。私は何か間違ったことをしているのですか、それとも何かが足りないのですか?