I need to draw a single character in my view as BIG thin text, as shown in the image below (text as simple lines)

But my code below gives me the following image (text as form)
Paint dPaint = new Paint(); dPaint.setAntiAlias(true); dPaint.setDither(true); dPaint.setColor(Color.RED); dPaint.setTextSize(getWidth()*.8F); dPaint.setStyle(Paint.Style.STROKE); dPaint.setStrokeWidth(1); canvas.drawText("A",getWidth()*.3F, getHeight()*.6F, dPaint);

I tried various properties of paint and stroke, but none worked. I also read in java 2D text drawn as a form.
Is there a way to draw text (character in particular) as lines, not form. Also, the text should be large.
source share