Android hidden bottom Virtual key navigation bar for full screen

Source: Internet
Author: User

Hide bottom Virtual key navigation bar realizes full screen in two cases

The first type: Always hidden, not appearing when touching the screen

Workaround: set the following two parameters simultaneously

View.system_ui_flag_hide_navigation
View.system_ui_flag_immersive

Add the following code in the OnCreate method of the activity that needs to hide the virtual key navigation bar:

Window _window;

/**

* Hide pad Bottom Virtual key

*/

 _window = GetWindow ();

Windowmanager.layoutparams params = _window.getattributes ();
Params.systemuivisibility = view.system_ui_flag_hide_navigation| view.system_ui_flag_immersive;
_window.setattributes (params);

The second type: hidden but appears when touching the screen

Workaround: set one of the following parameters

View.system_ui_flag_hide_navigation

Add the following code in the OnCreate method of the activity that needs to hide the virtual key navigation bar:

Window _window;

/**

* Hide pad Bottom Virtual key

*/

_window = GetWindow ();

Windowmanager.layoutparams params = _window.getattributes ();
params.systemuivisibility = view.system_ui_flag_hide_navigation;
_window.setattributes (params);

Android hidden bottom Virtual key navigation bar for full 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.