Revert "try highlight track overlay colors"
This reverts commit aeb3840ae0
.
This commit is contained in:
parent
58a9cf5278
commit
f4c8bf0818
4 changed files with 4 additions and 4 deletions
|
@ -94,7 +94,7 @@ public class ShowRouteInfoActivity extends ListActivity {
|
|||
public RouteDrawable(){
|
||||
paintRouteDirection = new Paint();
|
||||
paintRouteDirection.setStyle(Style.FILL_AND_STROKE);
|
||||
paintRouteDirection.setColor(Color.rgb(255, 102, 0));
|
||||
paintRouteDirection.setColor(Color.rgb(100, 0, 255));
|
||||
paintRouteDirection.setAntiAlias(true);
|
||||
}
|
||||
|
||||
|
|
|
@ -34,7 +34,7 @@ public class GPXLayer implements OsmandMapLayer {
|
|||
|
||||
private void initUI() {
|
||||
paint = new Paint();
|
||||
paint.setColor(Color.argb(180, 0, 255, 255));
|
||||
paint.setColor(Color.argb(180, 160, 10, 215));
|
||||
paint.setStyle(Style.STROKE);
|
||||
paint.setStrokeWidth(14);
|
||||
paint.setAntiAlias(true);
|
||||
|
|
|
@ -115,7 +115,7 @@ public class MapInfoLayer implements OsmandMapLayer {
|
|||
|
||||
paintRouteDirection = new Paint();
|
||||
paintRouteDirection.setStyle(Style.FILL_AND_STROKE);
|
||||
paintRouteDirection.setColor(Color.rgb(255, 102, 0));
|
||||
paintRouteDirection.setColor(Color.rgb(100, 0, 255));
|
||||
paintRouteDirection.setAntiAlias(true);
|
||||
|
||||
fillBlack = new Paint();
|
||||
|
|
|
@ -40,7 +40,7 @@ public class RouteLayer implements OsmandMapLayer {
|
|||
boundsRect = new Rect(0, 0, view.getWidth(), view.getHeight());
|
||||
tileRect = new RectF();
|
||||
paint = new Paint();
|
||||
paint.setColor(Color.argb(180, 255, 102, 0));
|
||||
paint.setColor(Color.BLUE);
|
||||
paint.setStyle(Style.STROKE);
|
||||
paint.setStrokeWidth(14);
|
||||
paint.setAlpha(150);
|
||||
|
|
Loading…
Reference in a new issue