Textview subtitle Effect

Source: Internet
Author: User
Tags drawtext

As follows:

ImplementationCodeAs follows:

 
Public class textsubview extends textview {private textpaint mpaint; Public textsubview (context, attributeset attrs) {super (context, attrs); mpaint = new textpaint (getpaint (); mpaint. setstyle (textpaint. style. stroke); mpaint. setshadowlayer (2.0f, 2.0f, 2.0f, color. red) ;}@ override protected void ondraw (canvas) {super. ondraw (canvas); canvas. save (); canvas. cliprect (0, 0, 55, getbottom (); canvas. drawtext (gettext (). tostring (), 0, getbaseline (), mpaint); canvas. restore ();}}

Code Description:

The key is to set the shadowlayer shadow effect and the four lines of ondraw code. You can search for "android cliprect" to find out the function. Do not reverse the order of cliprect and drawtext.

Note: This article is reproduced from the farmer's uncle

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.