remove the title bar of a window in Android

来源:互联网 发布:淘宝购物券怎么使用 编辑:程序博客网 时间:2024/06/05 05:01
To remove the title bar of a window,

add this line in your Activity's onCreate method:

 requestWindowFeature(Window.FEATURE_NO_TITLE);
原创粉丝点击