This article describes the Android programming interface to achieve Full-screen display method. Share to everyone for your reference, specific as follows:
In the development of Android applications, we will encounter some of the interface to set up a full screen format, there are two ways to implement. One is implemented in Java code, and the other is implemented in a configuration file.
1. Set in Java code
Super.oncreate (savedinstancestate);
Requestwindowfeature (Window.feature_no_title); No title
GetWindow (). SetFlags (WindowManager.LayoutParams.FLAG_FULLSCREEN, WindowManager.LayoutParams.FLAG_ fullscreen); Full Screen
Setcontentview (r.layout.main);
2. Modify in manifest file
Add in the activity that starts by default
Copy Code code as follows:
Android:theme= "@android: Style/theme.notitlebar.fullscreen"
Can
<activity android:name= ". Mainactivity "
android:label=" @string/app_name "
android:theme=" @android: style/ Theme.NoTitleBar.Fullscreen "
>
<intent-filter>
<action android:name=" Android.intent.action.MAIN "/>
<category android:name= android.intent.category.LAUNCHER"/>
< /intent-filter>
</activity>
For more information about Android development interested readers can view the site topics: "Android Development Introduction and Advanced Tutorial"
I hope this article will help you with the Android program.