How Android uses the Bitmap+canvas adaptive screen

Source: Internet
Author: User

We can use the matrix to shrink the bitmap we get so that our bitmap adapts to our mobile screen.


First, we need to get the size of our phone screen first.

WindowManager wm = (WindowManager) getcontext (). Getsystemservice (context.window_service); int width = Wm.getdefaultdisplay (). getwidth (); int height = Wm.getdefaultdisplay (). GetHeight ();

Then we construct a new matrix object and write a function of its own, as follows:

Public Bitmap Resizebitmap (Bitmap bitmap,int w,int h) {if (bitmap!=null) {int width = bitmap.getwidth (); int height = Bitmap. GetHeight (); int newwidth = W;int Newheight = h;float Scalewight = ((float) newwidth)/width;float ScaleHeight = ((float) NewH eight)/height; Matrix matrix = new Matrix (); Matrix.postscale (Scalewight, ScaleHeight); Bitmap res = Bitmap.createbitmap (Bitmap, 0,0,width, height, matrix, true); return res;} Else{return null;}}

So the bitmap object that we return through this function is the size of the screen that can fit our phone.

How Android uses the Bitmap+canvas adaptive screen

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.