There is no way to remove the title and full screen function when you test yourself. Finally found as long as public class Socketactivity extends Activity {}
But not with actionbaractivity.
first introduce the method of removing the title bar:
The first type:A method that is commonly used when getting startedrequestwindowfeature (Window.feature_no_title); // Remove title bar
Note This sentence must be written in front of the Setcontentview () method, or it will be an error
The second type:Defined in the Androidmanifest.xml file<Application Android:icon="@drawable/icon"
Android:label="@string/app_name"
Android:theme
= "@android: Style/theme.notitlebar" >
As can be seen, the entire application will be removed from the title bar, if you want to remove the title bar of an activity, you can add this attribute to the activity tag
The third type:This is not commonly used in general applications, is to create a new Style.xml file under the Res/values directory
For example:
<?XML version= "1.0" encoding= "UTF-8"?>
<Resources>
<StyleName="
Notitle">
<ItemName= "Android:windownotitle">True</Item>
</Style>
</resources>
In this way, we customize a style, which is the equivalent of a topic, and then define it in the Androidmanifest.xml file.
<ApplicationAndroid:icon= "@drawable/icon"
Android:label= "@string/app_name"
Android:theme
= "@style/notitle" >
This can also be achieved by removing the title bar effect
Summary of three ways to remove the title bar
First, sometimes we will see that the title bar will appear first, and then disappear, because we are only defined in the activity of the OnCreate method, the second relative to the first is better, do not appear this situation, the third I personally feel the best, so that the function is separate, easy to maintain and expand
to introduce the full-screen method:
First Kind
GetWindow (). SetFlags (WindowManager.LayoutParams.FLAG_FULLSCREEN, WindowManager.LayoutParams.FLAG_FULLSCREEN);
The second Kind
android:theme= "@android: Style/theme.notitlebar.fullscreen"
Third Kind
ApplicationAndroid:icon= "@drawable/icon"
Android:label= "@string/app_name"
Android:theme= "@style/fullscreem"
Android Remove title fullscreen display