摘要:
我已经尝试将GPX文件加载到Android模拟器中,但是我收到错误消息“该表包含错误。没有发送任何位置”。
重现步骤:
APS圆角(测试.gps):
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<gpx
xmlns="http://www.topografix.com/GPX/1/1"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.topografix.com/GPX/1/1 http://www.topografix.com/GPX/1/1/gpx.xsd"
version="1.1"
creator="gpx-poi.com">
<wpt lat="28.0587" lon="-82.4139">
<time>2015-12-01T03:01:44Z</time>
</wpt>
</gpx>
预期行为:
应将位置发送到模拟器
观察到的行为:
错误消息“该表包含错误。未发送任何位置”:
设备和Android版本:
模拟器Nexus 5X API Level 23(Google API),1080 x 1920; Windows 7 Enterprise SP1 64位上的420 dpi,Android 6.0(Google API),x86,1GB
截至2016年8月10日,仿真器看起来不支持GPX航点格式:
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<gpx
xmlns="http://www.topografix.com/GPX/1/1"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.topografix.com/GPX/1/1 http://www.topografix.com/GPX/1/1/gpx.xsd"
version="1.1"
creator="gpx-poi.com">
<wpt lat="28.0587" lon="-82.4139">
<time>2015-12-01T03:01:44Z</time>
</wpt>
</gpx>
但是,它似乎支持GPX轨道格式:
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<gpx
xmlns="http://www.topografix.com/GPX/1/1"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.topografix.com/GPX/1/1 http://www.topografix.com/GPX/1/1/gpx.xsd"
version="1.1"
creator="gpx-poi.com">
<trk>
<name />
<cmt />
<trkseg>
<trkpt lat="28.0587" lon="-82.4139">
<ele>0</ele>
<time>2015-12-01T03:01:44Z</time>
</trkpt>
</trkseg>
</trk>
</gpx>
上述GPX轨道格式成功加载到仿真器并正确注入位置。