<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>http://sdkwiki.wizarpos.com/index.php?action=history&amp;feed=atom&amp;title=Make_full_screen_using_android_provided_api</id>
	<title>Make full screen using android provided api - Revision history</title>
	<link rel="self" type="application/atom+xml" href="http://sdkwiki.wizarpos.com/index.php?action=history&amp;feed=atom&amp;title=Make_full_screen_using_android_provided_api"/>
	<link rel="alternate" type="text/html" href="http://sdkwiki.wizarpos.com/index.php?title=Make_full_screen_using_android_provided_api&amp;action=history"/>
	<updated>2026-05-24T05:49:05Z</updated>
	<subtitle>Revision history for this page on the wiki</subtitle>
	<generator>MediaWiki 1.39.5</generator>
	<entry>
		<id>http://sdkwiki.wizarpos.com/index.php?title=Make_full_screen_using_android_provided_api&amp;diff=734&amp;oldid=prev</id>
		<title>Mahong: Created page with &quot;For hiding the status bar and navigation bar, android provide the &#039;&#039;&#039;Immersive Mode&#039;&#039;&#039;. Use this way, the third-party app can implement full screen. == Permission ==   android...&quot;</title>
		<link rel="alternate" type="text/html" href="http://sdkwiki.wizarpos.com/index.php?title=Make_full_screen_using_android_provided_api&amp;diff=734&amp;oldid=prev"/>
		<updated>2018-12-03T06:06:38Z</updated>

		<summary type="html">&lt;p&gt;Created page with &amp;quot;For hiding the status bar and navigation bar, android provide the &amp;#039;&amp;#039;&amp;#039;Immersive Mode&amp;#039;&amp;#039;&amp;#039;. Use this way, the third-party app can implement full screen. == Permission ==   android...&amp;quot;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;For hiding the status bar and navigation bar, android provide the &amp;#039;&amp;#039;&amp;#039;Immersive Mode&amp;#039;&amp;#039;&amp;#039;. Use this way, the third-party app can implement full screen.&lt;br /&gt;
== Permission ==&lt;br /&gt;
  android.permission.CLOUDPOS_REAL_FULLSCREEN&lt;br /&gt;
The app declares the permission in the manifest.&lt;br /&gt;
&lt;br /&gt;
== Snippet code ==&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;java&amp;quot;&amp;gt;&lt;br /&gt;
//statusBar，navigationBar are all not display&lt;br /&gt;
getWindow().getDecorView().setSystemUiVisibility(&lt;br /&gt;
View.SYSTEM_UI_FLAG_HIDE_NAVIGATION&lt;br /&gt;
| View.SYSTEM_UI_FLAG_FULLSCREEN);&lt;br /&gt;
&lt;br /&gt;
//statusBar is display, navigationBar is not display&lt;br /&gt;
getWindow().getDecorView().setSystemUiVisibility(&lt;br /&gt;
View.SYSTEM_UI_FLAG_HIDE_NAVIGATION&lt;br /&gt;
| View.SYSTEM_UI_FLAG_VISIBLE);&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Download ==&lt;br /&gt;
Please download the [ftp://sdkuser:wizsdkar@ftp.wizarpos.com/RealFullScreenSample.zip whole demo].&lt;/div&gt;</summary>
		<author><name>Mahong</name></author>
	</entry>
</feed>