Я пытался пометить несколько мест на моем карте.Существует, класс расширяется от ItemizedOverlay.Существует конструктор для этого, который имеет два параметра (Drawable defaultMarker, Context c)
В MapActivity, где у меня есть представление карты, я попытался определить рисование, которое необходимо для создания объекта наложения, но у меня всегда
java.lang.NullPointerException caused by this line:
Drawable marker =this.getResources().getDrawable(R.drawable.pointer);
Я проверил эту переменную с помощью syso, и она не кажется мне нулевой
I/System.out(430): android.graphics.drawable.BitmapDrawable@405ca538
Я пытался найти решение.Я обнаружил, что инициализирую контекст в конструкторе MapActivity
, чем получаю следующую ошибку:
Unable to instantiate activity ComponentInfo: java.lang.InstantiationException
MapController mc;
GeoPoint p;
MapView mapView;
Location loc;
boolean move = true;
LocationManager mlocManager;
LocationListener mlocListener = new MyLocationListener();
Context c
/* if constructor commented: nullpointer else instantiation exception */
MapActivity(Context cc){
this.c=cc;
}
Drawable marker =c.getResources().getDrawable(R.drawable.pointer);
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
System.out.println(this.getResources());
mlocManager = (LocationManager) getSystemService(Context.LOCATION_SERVICE);
setContentView(R.layout.map);
tv = (TextView) findViewById(R.id.textView1);
mapView = (MapView) findViewById(R.id.mapv);
mapView.setBuiltInZoomControls(true);
mc = mapView.getController();
p = new GeoPoint((int) (lat1 * 1E6), (int) (lon1 * 1E6));
Button bck = (Button) findViewById(R.id.backBtn);
bck.setOnClickListener(new View.OnClickListener() {
public void onClick(View vi) {
mc.animateTo(p);
}
});
class MapOverlay extends com.google.android.maps.Overlay {
public boolean draw(Canvas canvas, MapView mapView, boolean shadow,
long when) {
super.draw(canvas, mapView, shadow);
Point screenPts = new Point();
mapView.getProjection().toPixels(p, screenPts);
Bitmap bmp = BitmapFactory.decodeResource(getResources(),
R.drawable.pointer);
canvas.drawBitmap(bmp, screenPts.x, screenPts.y - 50, null);
return true;
}
}
}