Android Gallery Vertical screen does not show the status bar solution _android

Source: Internet
Author: User
The behavior of the gallery displayed on the JB and JB2 versions is that the horizontal screen displays a full screen, and the vertical screen displays status bar. How to make the vertical screen not show status bar.

Modify alps/packages/apps/gallery2/src/com/android/gallery3d/app/ Togglestatusbarbyorientation () method in Abstractgalleryactivity.java:
Copy Code code as follows:

private void Togglestatusbarbyorientation () {
if (Mdisabletogglestatusbar) return;
Window win = GetWindow ();
Win.addflags (WindowManager.LayoutParams.FLAG_FULLSCREEN);
if (Getresources (). GetConfiguration (). Orientation = = configuration.orientation_portrait) {
Win.clearflags (WindowManager.LayoutParams.FLAG_FULLSCREEN);
} else {
Win.addflags (WindowManager.LayoutParams.FLAG_FULLSCREEN);
// }
...
}
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.