remove Alpha comments

This commit is contained in:
sonora 2012-02-28 13:44:55 +01:00
parent fda7554217
commit de77eae1e8
6 changed files with 0 additions and 9 deletions

View file

@ -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);
}

View file

@ -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();

View file

@ -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);

View file

@ -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);

View file

@ -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);
}

View file

@ -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);
}