Android UI design-Implementation of news or information entries

Source: Internet
Author: User

for example, the number of text messages or news messages is often on the image. The implementation method is as follows. You can adjust the number based on different image sizes.

Private bitmap generatenumbericon (INT resid, int newscount) {bitmap icon = bitmapfactory. decoderesource (getresources (), resid); int iconsize = icon. getwidth (); bitmap mbitmap = bitmap. createbitmap (iconsize, iconsize, config. argb_8888); canvas = new canvas (mbitmap); paint = new paint (); paint. setdither (true); paint. setfilterbitmap (true); rect src = new rect (0, 0, iconsize, iconsize); rect DST = new rect (0, 0, iconsize, iconsize); canvas. drawbitmap (icon, SRC, DST, paint); paint countpaint = new paint (paint. anti_alias_flag | paint. dev_kern_text_flag); countpaint. setcolor (getresources (). getcolor (R. color. red); countpaint. setstyle (paint. style. stroke); countpaint. settypeface (typeface. default_bold); countpaint. settextsize (iconsize * 2/3f); canvas. drawtext (string. valueof (newscount), iconsize/4, iconsize * 5/6, countpaint); Return mbitmap ;}

Reference results:

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.