Unlock the screen width and height after the android lock screen.

Source: Internet
Author: User

ProgramSet to landscape screen:

 
Android: screenorientation = "Landscape"

Expected screen width and height

 
@ Override public void onwindowfocuschanged (Boolean hasfocus) {Height = RL. getheight (); width = RL. getwidth (); logcat ("RL. getheight () "+ height +" RL. getwidth () "+ width); super. onwindowfocuschanged (hasfocus );}

AboveCodeNormally on most mobile phones

But a few mobile phones, unlock the screen after unlocking, will find that the width and height are reversed.

So change it to this

Static Boolean m_bis1stfocus = true; @ override public void onwindowfocuschanged (Boolean hasfocus) {If (m_bis1stfocus) {m_bis1stfocus = false; Height = RL. getheight (); width = RL. getwidth (); logcat ("RL. getheight () "+ height +" RL. getwidth () "+ width +" hasfocus: "+ hasfocus);} super. onwindowfocuschanged (hasfocus );}

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.