Android中无标题设置

今天在尝试做一个软件开始界面,但是出现的结果总是有标题,让我很是烦恼,在网上搜索以后总结到去除标题的方法:

 去掉标题:


<span style="font-size:14px;">protected void onCreate(Bundle savedInstanceState) {
		super.onCreate(savedInstanceState);
		requestWindowFeature(Window.FEATURE_NO_TITLE);//去掉标题
		setContentView(R.layout.activity_welcome);
		new Thread(this).start();
	}
</span>

去掉状态栏:

<span style="font-size:14px;">protected void onCreate(Bundle savedInstanceState) {
		super.onCreate(savedInstanceState);
		requestWindowFeature(Window.FEATURE_NO_TITLE);//去掉标题
		getWindow().addFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN);//去掉状态栏
		setContentView(R.layout.activity_welcome);
		new Thread(this).start();
	}</span>

通过在mainfest中设置:


<span style="font-size:14px;"> android:theme="@android:style/Theme.NoTitleBar.Fullscreen"</span>


posted @ 2015-09-13 16:22  wojiaohuangyu  阅读(10)  评论(0)    收藏  举报