remove Alpha comments
This commit is contained in:
parent
fda7554217
commit
de77eae1e8
6 changed files with 0 additions and 9 deletions
|
@ -99,11 +99,9 @@ public class OsmBugsLayer extends OsmandMapLayer implements ContextMenuLayer.ICo
|
||||||
}
|
}
|
||||||
pointOpenedUI = new Paint();
|
pointOpenedUI = new Paint();
|
||||||
pointOpenedUI.setColor(activity.getResources().getColor(R.color.osmbug_opened));
|
pointOpenedUI.setColor(activity.getResources().getColor(R.color.osmbug_opened));
|
||||||
//pointOpenedUI.setAlpha(200);
|
|
||||||
pointOpenedUI.setAntiAlias(true);
|
pointOpenedUI.setAntiAlias(true);
|
||||||
pointClosedUI = new Paint();
|
pointClosedUI = new Paint();
|
||||||
pointClosedUI.setColor(activity.getResources().getColor(R.color.osmbug_closed));
|
pointClosedUI.setColor(activity.getResources().getColor(R.color.osmbug_closed));
|
||||||
//pointClosedUI.setAlpha(200);
|
|
||||||
pointClosedUI.setAntiAlias(true);
|
pointClosedUI.setAntiAlias(true);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -136,7 +136,6 @@ public class POIMapLayer extends OsmandMapLayer implements ContextMenuLayer.ICon
|
||||||
|
|
||||||
pointAltUI = new Paint();
|
pointAltUI = new Paint();
|
||||||
pointAltUI.setColor(view.getApplication().getResources().getColor(R.color.poi_background));
|
pointAltUI.setColor(view.getApplication().getResources().getColor(R.color.poi_background));
|
||||||
//pointAltUI.setAlpha(160);
|
|
||||||
pointAltUI.setStyle(Style.FILL);
|
pointAltUI.setStyle(Style.FILL);
|
||||||
|
|
||||||
paintIcon = new Paint();
|
paintIcon = new Paint();
|
||||||
|
|
|
@ -41,7 +41,6 @@ public class PointLocationLayer extends OsmandMapLayer {
|
||||||
|
|
||||||
area = new Paint();
|
area = new Paint();
|
||||||
area.setColor(view.getResources().getColor(R.color.pos_area));
|
area.setColor(view.getResources().getColor(R.color.pos_area));
|
||||||
//area.setAlpha(40);
|
|
||||||
|
|
||||||
aroundArea = new Paint();
|
aroundArea = new Paint();
|
||||||
aroundArea.setColor(view.getResources().getColor(R.color.pos_around));
|
aroundArea.setColor(view.getResources().getColor(R.color.pos_around));
|
||||||
|
@ -51,7 +50,6 @@ public class PointLocationLayer extends OsmandMapLayer {
|
||||||
|
|
||||||
headingPaint = new Paint();
|
headingPaint = new Paint();
|
||||||
headingPaint.setColor(view.getResources().getColor(R.color.pos_heading));
|
headingPaint.setColor(view.getResources().getColor(R.color.pos_heading));
|
||||||
//headingPaint.setAlpha(50);
|
|
||||||
headingPaint.setAntiAlias(true);
|
headingPaint.setAntiAlias(true);
|
||||||
headingPaint.setStyle(Style.FILL);
|
headingPaint.setStyle(Style.FILL);
|
||||||
|
|
||||||
|
|
|
@ -48,7 +48,6 @@ public class RouteLayer extends OsmandMapLayer {
|
||||||
}
|
}
|
||||||
paint.setStyle(Style.STROKE);
|
paint.setStyle(Style.STROKE);
|
||||||
paint.setStrokeWidth(14);
|
paint.setStrokeWidth(14);
|
||||||
//paint.setAlpha(150);
|
|
||||||
paint.setAntiAlias(true);
|
paint.setAntiAlias(true);
|
||||||
paint.setStrokeCap(Cap.ROUND);
|
paint.setStrokeCap(Cap.ROUND);
|
||||||
paint.setStrokeJoin(Join.ROUND);
|
paint.setStrokeJoin(Join.ROUND);
|
||||||
|
|
|
@ -39,11 +39,9 @@ public class TransportInfoLayer extends OsmandMapLayer {
|
||||||
|
|
||||||
paintInt = new Paint();
|
paintInt = new Paint();
|
||||||
paintInt.setColor(view.getResources().getColor(R.color.transport_int));
|
paintInt.setColor(view.getResources().getColor(R.color.transport_int));
|
||||||
//paintInt.setAlpha(150);
|
|
||||||
paintInt.setAntiAlias(true);
|
paintInt.setAntiAlias(true);
|
||||||
paintEnd = new Paint();
|
paintEnd = new Paint();
|
||||||
paintEnd.setColor(view.getResources().getColor(R.color.transport_end));
|
paintEnd.setColor(view.getResources().getColor(R.color.transport_end));
|
||||||
//paintEnd.setAlpha(150);
|
|
||||||
paintEnd.setAntiAlias(true);
|
paintEnd.setAntiAlias(true);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -35,7 +35,6 @@ public class TransportStopsLayer extends OsmandMapLayer implements ContextMenuLa
|
||||||
|
|
||||||
pointAltUI = new Paint();
|
pointAltUI = new Paint();
|
||||||
pointAltUI.setColor(view.getResources().getColor(R.color.transport_stop));
|
pointAltUI.setColor(view.getResources().getColor(R.color.transport_stop));
|
||||||
//pointAltUI.setAlpha(150);
|
|
||||||
pointAltUI.setAntiAlias(true);
|
pointAltUI.setAntiAlias(true);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue