我正在尝试删除 mixare 中的一些数据源,以便在应用程序启动时它会自动从特定数据源加载数据。我尝试在我的 arrays.xml 文件中将它们设置为 false:
<string-array name="defaultdatasources">
<item>
Wikipedia|http://ws.geonames.org/findNearbyWikipediaJSON|0|0|true
</item>
<item>
Twitter|http://search.twitter.com/search.json|2|0|false
</item>
<item>
OpenStreetmap|http://open.mapquestapi.com/xapi/api/0.6/node[railway=station]|3|1|false
</item>
<item>
Own URL|http://mixare.org/geotest.php|4|0|false
</item>
</string-array>
这是正确的方法吗?我仍然得到
“从 Twitter/OSM/Own URL 接收数据”
通知以及在我的屏幕上加载的推文/OSM 数据。
我正在探索代码,我似乎被困在了这个代码上。请帮忙?:)