第一种方法 代码法:
// 无标题:
this.requestWindowFeature(Window.FEATURE_NO_TITLE);
//全屏:
this.getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN,WindowManager.LayoutParams.FLAG_FULLSCREEN);
setContentView(R.layout.login);
第二种方法 配置法:打开AndroidManifest.xml 修改Activty标签
无标题:
<activity android:name=".Login" android:label="@string/app_name" android:theme="@android:style/Theme.NoTitleBar" />
全屏:
<activity android:name=".Login" android:label="@string/app_name" android:theme="@android:style/Theme.NoTitleBar.Fullscreen" />