我正在尝试用我的构造函数来解决这个问题,这会给我一个重复的方法错误:
import android.graphics.Canvas;
import android.graphics.Color;
import android.graphics.Paint;
import android.graphics.Point;
import com.google.android.maps.GeoPoint;
import com.google.android.maps.MapView;
import com.google.android.maps.Overlay;
import com.google.android.maps.Projection;
public class MapRouteOverlay extends Overlay {
private GeoPoint gp1;
private GeoPoint gp2;
private int mode=0;
private int defaultColor;
public MapRouteOverlay(GeoPoint gp1, GeoPoint gp2, int mode) {
this.gp1 = gp1;
this.gp2 = gp2;
this.mode = mode;
defaultColor = 999;
}
public MapRouteOverlay(GeoPoint gp1, GeoPoint gp2, int defaultColor) {
this.gp1 = gp1;
this.gp2 = gp2;
this.mode = mode;
this.defaultColor = defaultColor;
}
public int getMode() {
return mode;
}
public boolean draw(Canvas canvas, MapView mapView, boolean shadow, long when) {
Projection projection = mapView.getProjection();
if (shadow == false) {
Paint paint = new Paint();
paint.setAntiAlias(true);
Point point = new Point();
projection.toPixels(gp1, point);
if (mode==2) {
if(defaultColor == 999)
paint.setColor(Color.RED);
else
paint.setColor(defaultColor);
Point point2 = new Point();
projection.toPixels(gp2, point2);
paint.setStrokeWidth(5);
paint.setAlpha(120);
canvas.drawLine(point.x, point.y, point2.x, point2.y, paint);
}
}
return super.draw(canvas, mapView, shadow, when);
}
}
我得到的错误是这样的: MapRouteOverlay类型中的重复方法MapRouteOverlay(GeoPoint,GeoPoint,int)
我希望他们成为建设者。我如何解决这个问题呢?任何帮助将不胜感激!
答案 0 :(得分:0)
你不满足重载规则。
public MapRouteOverlay(GeoPoint gp1, GeoPoint gp2, int mode) {
你有一个重复的构造函数,其参数的数量和类型相同。
您必须更改一个构造函数签名,如下所示:
public MapRouteOverlay( int mode,GeoPoint gp1, GeoPoint gp2) {
this(gp1,gp2, mode); //if your super class does not have an no-args constructor,this must be the first line in an overloaded constructor, a call to this() or super();
//rest of your code.
}