コンストラクターを使用してこの問題を解決しようとしています。この問題により、メソッドの重複エラーが発生します。
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)
それらをコンストラクターにしてほしい。これを修正して機能させるにはどうすればよいですか?どんな助けでもいただければ幸いです!