Welcome 微信登录

首页 / 操作系统 / Linux / Android 中去掉activity的title和status bar

Android 中去掉activity的title和status bar在应用程序的activity中加入下面两句话就可以了:
  1. // remove title bar   
  2. requestWindowFeature(Window.FEATURE_NO_TITLE);  
  3. // full screen   
  4. getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN,WindowManager.LayoutParams.FLAG_FULLSCREEN);  
需要包含: import android.view.Window;
import android.view.WindowManager;