我可以在谷歌地图上看到差异,但在Android MapActivity上 我很难找到差异。 对于'map',我调用:mapView.setSatellite(false); 对于'卫星'我叫:mapView.setSatellite(true); 但对于混合视图......我试过玩 mapView.setStreetView(真);但这似乎并没有影响任何事情 无论哪种方式。 有什么想法吗?
答案 0 :(得分:2)
答案 1 :(得分:1)
创建一个扩展Service
的类public class myService extends Service
覆盖
public void onStart(Intent intent, int startId) {
在您的活动中
if(!myService.isInstanceCreated())
startService(new Intent(youractivityclass.this, myService.class));