Android去掉头部标题

转载请标明出处:http://blog.csdn.net/wu_wxc/article/details/46846365
本文出自【吴孝城的CSDN博客】

打开AndroidManifest.xml文件,找到application节点

android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >

修改为如下代码,即可去头部标题栏

android:allowBackup="true"  
android:icon="@drawable/ic_launcher"  
android:label="@string/app_name"  
android:theme="@android:style/Theme.NoTitleBar" >

修改为如下代码,即可去头部标题栏且全屏显示

android:allowBackup="true"  
android:icon="@drawable/ic_launcher"  
android:label="@string/app_name"  
android:theme="@android:style/Theme.NoTitleBar.Fullscreen" >

在java代码中解决的方法:

public class MainActivity extends Activity
{

    @Override
    protected void onCreate(Bundle savedInstanceState)
    {
        super.onCreate(savedInstanceState);

        // 这部分内容一定要在setContentView()之前调用

        // 去掉窗口标题
        requestWindowFeature(Window.FEATURE_NO_TITLE);

        // 加载布局
        setContentView(R.layout.activity_main);
    }

}

全屏显示的java代码如下:

import android.os.Bundle;
import android.view.Window;
import android.view.WindowManager;
import android.app.Activity;

public class MainActivity extends Activity
{

    @Override
    protected void onCreate(Bundle savedInstanceState)
    {
        super.onCreate(savedInstanceState);

        // 这部分内容一定要在setContentView()之前调用

        // 去掉窗口标题
        requestWindowFeature(Window.FEATURE_NO_TITLE);

        // 隐藏状态栏,全屏显示
        // 第一种:
        getWindow().addFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN);
        // 第二种:(两种方法效果一样)
        // getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN,
        // WindowManager.LayoutParams.FLAG_FULLSCREEN);

        // 加载布局
        setContentView(R.layout.activity_main);
    }

}



你可能感兴趣的:(全屏显示,安卓去掉标题栏)