android全屏设置

来源:互联网 发布:网络借贷属于金融吗 编辑:程序博客网 时间:2024/05/18 01:54
package com.lxl.demo;import android.app.Activity;import android.os.Bundle;import android.view.Window;import android.view.WindowManager;public class DemoActivity extends Activity {/** Called when the activity is first created. */@Overridepublic void onCreate(Bundle savedInstanceState) {super.onCreate(savedInstanceState);// 设置全屏标志getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN, WindowManager.LayoutParams.FLAG_FULLSCREEN);// 隐藏标题栏(必须放在setContentView调用之前)getWindow().requestFeature(Window.FEATURE_NO_TITLE);setContentView(R.layout.main);}}