Android programming interface to achieve Full-screen display method (2 methods) _android

Source: Internet
Author: User

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.

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.