I\'d like to paint in a Canvas something like:
How can I do the bordered e
Draw the text two times. First draw the text with a fill paint like so:
Paint fillPaint = new Paint();
fillPaint.setColor(Color.MAGENTA);
canvas.drawText(.... fillPaint);
Then draw it again with a stroke like so:
Paint stkPaint = new Paint();
stkPaint.setStyle(Style.STROKE);
stkPaint.setStrokeWidth(8);
stkPaint.setColor(Color.WHITE);
canvas.drawText(.... stkPaint);