TextView Dash Android

Source: Internet
Author: User

TextView underline, Underline

Down:

Medium Dash

Textview.getpaint (). SetFlags (Paint.strike_thru_text_flag | Paint.anti_alias_flag); Set the underline and add clarity

Underline

Textview.getpaint (). SetFlags (Paint.underline_text_flag);


De-Set line

Textview.getpaint (). SetFlags (0); Set the dash to cancel


I encapsulated a few methods to call directly

/** * Underline *  * @param textView */private void Addbuttomline (TextView textView) {textview.getpaint (). SetFlags ( Paint.underline_text_flag);} /** * Remove Line *  * @param textView */private void Removeline (TextView textView) {textview.getpaint (). SetFlags (0);//de-set the Dash}/** * Set the underline and add clarity *  * @param textView */private void AddLine (TextView textView) {textview.getpaint (). SetFlags (Paint . Strike_thru_text_flag | Paint.anti_alias_flag); Set the underline and add clarity}/** * Underline *  * @param textView */private void Addcenterline (TextView textView) {textview.getpaint (). SETFL AGS (Paint.strike_thru_text_flag); Underline}/** * Anti-aliasing *  * @param textView */private void Addjuchiline (TextView textView) {textview.getpaint (). Setantialias (true);//anti-aliasing}


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.