Guest User

Untitled

a guest
Oct 23rd, 2017
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. private final Paint entityPaint = new Paint(Paint.ANTI_ALIAS_FLAG);
  2.  
  3. public MapDrawView(Context context)
  4. {
  5. ...
  6. entityPaint.setColor(Color.parseColor("#004B8A"));
  7. }
  8.  
  9. protected void onDraw(Canvas canvas)
  10. {
  11. ...
  12. canvas.drawRect(0, 0, width*elementSize, height*elementSize, entityPaint);
  13. }
Add Comment
Please, Sign In to add comment