去掉 activity 头部

方法一:在***Mainifest.xml中 <application>节点中加入  android:theme="@style/AppTheme"

方法二:

public void onCreate(Bundle savedInstanceState) {
  this.requestWindowFeature(Window.FEATURE_NO_TITLE);

  super.onCreate(savedInstanceState);}

要写在super..前面 ,即在建立之前去掉头部

posted @ 2012-07-14 19:14  石沉溪涧  阅读(247)  评论(0编辑  收藏  举报