1、在代码里实现
this.requestWindowFeature(Window.FEATURE_NO_TITLE);
这句话必须在setContentView之前写
2、在清单文件里application(全局的)或activity标签内添加
android:theme="@android:style/Theme.NoTitleBar"
3、在styles.xml文件里定义
<?xml version="1.0" encoding="UTF-8" ?>
<resources>
<style name="notitle">
<item name="android:windowNoTitle">true</item>
</style>
</resources>
需要在清单文件中引用。