Android edittext custom border

Source: Internet
Author: User
Package COM. puppet. custom. component; import android. content. context; import android. graphics. canvas; import android. graphics. color; import android. graphics. paint; import android. widget. edittext; public class searchedittext extends edittext {private paint; Public searchedittext (context) {super (context); // defines paint = getpaint (); // define the stroke width style paint. setstyle (paint. style. stroke); // define the stroke color paint. setcolor (color. gray);} @ override protected void ondraw (canvas) {super. ondraw (canvas); int W = getwidth (); int H = getheight (); // canvas of the lower border. drawline (0, H, W, H, paint); // canvas on the right border. drawline (W, 0, W, H, paint); // canvas with the left border. drawline (0, 0, 0, H, paint); // top border canvas. drawline (0, 0, W, 0, paint );}}

Tip: http://android123.blog.51cto.com/2099282/517533

Related Article

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.