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.setColor(activity.getResources().getColor(R.color.osmbug_opened));
|
||||
//pointOpenedUI.setAlpha(200);
|
||||
pointOpenedUI.setAntiAlias(true);
|
||||
pointClosedUI = new Paint();
|
||||
pointClosedUI.setColor(activity.getResources().getColor(R.color.osmbug_closed));
|
||||
//pointClosedUI.setAlpha(200);
|
||||
pointClosedUI.setAntiAlias(true);
|
||||
}
|
||||
|
||||
|
|
|
@ -136,7 +136,6 @@ public class POIMapLayer extends OsmandMapLayer implements ContextMenuLayer.ICon
|
|||
|
||||
pointAltUI = new Paint();
|
||||
pointAltUI.setColor(view.getApplication().getResources().getColor(R.color.poi_background));
|
||||
//pointAltUI.setAlpha(160);
|
||||
pointAltUI.setStyle(Style.FILL);
|
||||
|
||||
paintIcon = new Paint();
|
||||
|
|
|
@ -41,7 +41,6 @@ public class PointLocationLayer extends OsmandMapLayer {
|
|||
|
||||
area = new Paint();
|
||||
area.setColor(view.getResources().getColor(R.color.pos_area));
|
||||
//area.setAlpha(40);
|
||||
|
||||
aroundArea = new Paint();
|
||||
aroundArea.setColor(view.getResources().getColor(R.color.pos_around));
|
||||
|
@ -51,7 +50,6 @@ public class PointLocationLayer extends OsmandMapLayer {
|
|||
|
||||
headingPaint = new Paint();
|
||||
headingPaint.setColor(view.getResources().getColor(R.color.pos_heading));
|
||||
//headingPaint.setAlpha(50);
|
||||
headingPaint.setAntiAlias(true);
|
||||
headingPaint.setStyle(Style.FILL);
|
||||
|
||||
|
|
|
@ -48,7 +48,6 @@ public class RouteLayer extends OsmandMapLayer {
|
|||
}
|
||||
paint.setStyle(Style.STROKE);
|
||||
paint.setStrokeWidth(14);
|
||||
//paint.setAlpha(150);
|
||||
paint.setAntiAlias(true);
|
||||
paint.setStrokeCap(Cap.ROUND);
|
||||
paint.setStrokeJoin(Join.ROUND);
|
||||
|
|
|
@ -39,11 +39,9 @@ public class TransportInfoLayer extends OsmandMapLayer {
|
|||
|
||||
paintInt = new Paint();
|
||||
paintInt.setColor(view.getResources().getColor(R.color.transport_int));
|
||||
//paintInt.setAlpha(150);
|
||||
paintInt.setAntiAlias(true);
|
||||
paintEnd = new Paint();
|
||||
paintEnd.setColor(view.getResources().getColor(R.color.transport_end));
|
||||
//paintEnd.setAlpha(150);
|
||||
paintEnd.setAntiAlias(true);
|
||||
}
|
||||
|
||||
|
|
|
@ -35,7 +35,6 @@ public class TransportStopsLayer extends OsmandMapLayer implements ContextMenuLa
|
|||
|
||||
pointAltUI = new Paint();
|
||||
pointAltUI.setColor(view.getResources().getColor(R.color.transport_stop));
|
||||
//pointAltUI.setAlpha(150);
|
||||
pointAltUI.setAntiAlias(true);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue