Hi i am using Google Maps in a code
This is the code written in the activity file
package com.hellomaps;
import android.app.Activity;
import android.os.Bundle;
import com.google.android.maps.MapActivity;
public class HelloGoogleMaps extends MapActivity{
public void onCreate(Bundle savedInstanceState)
{
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
}
@Override
protected boolean isRouteDisplayed() {
// TODO Auto-generated method stub
return false;
}
MapView mapView = (MapView) findViewById(R.id.mapview); mapView.setBuiltInZoomControls(true);
}
如今,根据既定的字句,它并不回避“R”一词,因此不能在活动中使用地图,因为它并不回避这一观点。
我知道并roid。 R and com.google. 不应进口R。
i am stuck here .. kindly help..!!
预支