Hide the status bar of Android, set full screen, and cancel full screen

Source: Internet
Author: User

Hide the status bar of Android, set full screen, and cancel full screen

I will write these three setting codes in a tool class. When you want to call these three functions for an Activity, pass the Activity itself as a parameter.

 

The Code is as follows:

 

Import android. app. activity; import android. view. window; import android. view. windowManager; public class CommonUtil {/*** set to hide the title bar ** @ param activity */public static void setNoTitleBar (Activity activity) {activity. requestWindowFeature (Window. FEATURE_NO_TITLE);}/*** set full screen ** @ param activity */public static void setFullScreen (Activity activity) {activity. getWindow (). setFlags (WindowManager. layoutParams. FLAG_FULLSCREEN, WindowManager. layoutParams. FLAG_FULLSCREEN);}/*** cancel full screen ** @ param activity */public static void cancelFullScreen (Activity activity) {activity. getWindow (). clearFlags (WindowManager. layoutParams. FLAG_FULLSCREEN );}}


 

In addition, you can set full screen in the androidmanifest. xml file as follows:

Add the code android: theme = "@ android: style/Theme. Light. NoTitleBar. Fullscreen" to the Activity you want to set a full screen"

 

If you add this sentence to the Application, it means that you set full screen for all the activities in the app.

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.