Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 3485060
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 18, 20262026-05-18T10:51:44+00:00 2026-05-18T10:51:44+00:00

I’m currently working on extending a TextView, adding an outline around the text. Thus

  • 0

I’m currently working on extending a TextView, adding an outline around the text. Thus far, the only problem I’ve been having is my inability to position the “outline” correctly behind a text. If I code the extended class like the one portrayed below, I get a label that looks like this:

Note: in the above screenshot, I set the fill color to white, and the stroke color to black.

What am I doing wrong?

public class OutlinedTextView extends TextView {
    /* ===========================================================
     * Constants
     * =========================================================== */
    private static final float OUTLINE_PROPORTION = 0.1f;

    /* ===========================================================
     * Members
     * =========================================================== */
    private final Paint mStrokePaint = new Paint();
    private int mOutlineColor = Color.TRANSPARENT;

    /* ===========================================================
     * Constructors
     * =========================================================== */
    public OutlinedTextView(Context context) {
        super(context);
        this.setupPaint();
    }
    public OutlinedTextView(Context context, AttributeSet attrs) {
        super(context, attrs);
        this.setupPaint();
        this.setupAttributes(context, attrs);
    }
    public OutlinedTextView(Context context, AttributeSet attrs, int defStyle) {
        super(context, attrs, defStyle);
        this.setupPaint();
        this.setupAttributes(context, attrs);
    }

    /* ===========================================================
     * Overrides
     * =========================================================== */
    @Override
    protected void onDraw(Canvas canvas) {
        // Get the text to print
        final float textSize = super.getTextSize();
        final String text = super.getText().toString();

        // setup stroke
        mStrokePaint.setColor(mOutlineColor);
        mStrokePaint.setStrokeWidth(textSize * OUTLINE_PROPORTION);
        mStrokePaint.setTextSize(textSize);
        mStrokePaint.setFlags(super.getPaintFlags());
        mStrokePaint.setTypeface(super.getTypeface());

        // Figure out the drawing coordinates
        //mStrokePaint.getTextBounds(text, 0, text.length(), mTextBounds);

        // draw everything
        canvas.drawText(text,
                super.getWidth() * 0.5f, super.getBottom() * 0.5f,
                mStrokePaint);
        super.onDraw(canvas);
    }

    /* ===========================================================
     * Private/Protected Methods
     * =========================================================== */
    private final void setupPaint() {
        mStrokePaint.setAntiAlias(true);
        mStrokePaint.setStyle(Paint.Style.STROKE);
        mStrokePaint.setTextAlign(Paint.Align.CENTER);
    }
    private final void setupAttributes(Context context, AttributeSet attrs) {
        final TypedArray array = context.obtainStyledAttributes(attrs,
                R.styleable.OutlinedTextView);
        mOutlineColor = array.getColor(
                R.styleable.OutlinedTextView_outlineColor, 0x00000000);
        array.recycle(); 

        // Force this text label to be centered
        super.setGravity(Gravity.CENTER_HORIZONTAL);
    }
}
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-18T10:51:44+00:00Added an answer on May 18, 2026 at 10:51 am

    Bah, that was stupid of me. I just needed to change-up that commented-out line:

    super.getPaint().getTextBounds(text, 0, text.length(), mTextBounds);
    

    In addition, for actually rendering the text, I need to average this view’s height and the text’s height:

    // draw everything
    canvas.drawText(text,
        super.getWidth() * 0.5f, (super.getHeight() + mTextBounds.height()) * 0.5f,
        mStrokePaint);
    

    The entire code now reads as follows:

    public class OutlinedTextView extends TextView {
        /* ===========================================================
         * Constants
         * =========================================================== */
        private static final float OUTLINE_PROPORTION = 0.1f;
    
        /* ===========================================================
         * Members
         * =========================================================== */
        private final Paint mStrokePaint = new Paint();
        private final Rect mTextBounds = new Rect();
        private int mOutlineColor = Color.TRANSPARENT;
    
        /* ===========================================================
         * Constructors
         * =========================================================== */
        public OutlinedTextView(Context context) {
            super(context);
            this.setupPaint();
        }
        public OutlinedTextView(Context context, AttributeSet attrs) {
            super(context, attrs);
            this.setupPaint();
            this.setupAttributes(context, attrs);
        }
        public OutlinedTextView(Context context, AttributeSet attrs, int defStyle) {
            super(context, attrs, defStyle);
            this.setupPaint();
            this.setupAttributes(context, attrs);
        }
    
        /* ===========================================================
         * Overrides
         * =========================================================== */
        @Override
        protected void onDraw(Canvas canvas) {
            // Get the text to print
            final float textSize = super.getTextSize();
            final String text = super.getText().toString();
    
            // setup stroke
            mStrokePaint.setColor(mOutlineColor);
            mStrokePaint.setStrokeWidth(textSize * OUTLINE_PROPORTION);
            mStrokePaint.setTextSize(textSize);
            mStrokePaint.setFlags(super.getPaintFlags());
            mStrokePaint.setTypeface(super.getTypeface());
    
            // Figure out the drawing coordinates
            super.getPaint().getTextBounds(text, 0, text.length(), mTextBounds);
    
            // draw everything
            canvas.drawText(text,
                    super.getWidth() * 0.5f, (super.getHeight() + mTextBounds.height()) * 0.5f,
                    mStrokePaint);
            super.onDraw(canvas);
        }
    
        /* ===========================================================
         * Private/Protected Methods
         * =========================================================== */
        private final void setupPaint() {
            mStrokePaint.setAntiAlias(true);
            mStrokePaint.setStyle(Paint.Style.STROKE);
            mStrokePaint.setTextAlign(Paint.Align.CENTER);
        }
        private final void setupAttributes(Context context, AttributeSet attrs) {
            final TypedArray array = context.obtainStyledAttributes(attrs,
                    R.styleable.OutlinedTextView);
            mOutlineColor = array.getColor(
                    R.styleable.OutlinedTextView_outlineColor, 0x00000000);
            array.recycle(); 
    
            // Force this text label to be centered
            super.setGravity(Gravity.CENTER_HORIZONTAL);
        }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I want use html5's new tag to play a wav file (currently only supported
I am currently running into a problem where an element is coming back from
link Im having trouble converting the html entites into html characters, (&# 8217;) i
I have a JSP page retrieving data and when single or double quotes are
Seemingly simple, but I cannot find anything relevant on the web. What is the
Does anyone know how can I replace this 2 symbol below from the string
this is what i have right now Drawing an RSS feed into the php,
I'm trying to decode HTML entries from here NYTimes.com and I cannot figure out
That's pretty much it. I'm using Nokogiri to scrape a web page what has
I have just tried to save a simple *.rtf file with some websites and

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.