2012-09-18 132 views
0

我有一個佈局,我想佈局顯示在整個屏幕上沒有標題欄。 我活動的onCreate方法:無法刪除標題欄?

public void onCreate(Bundle savedInstanceState) { 
     super.onCreate(savedInstanceState); 
     requestWindowFeature(Window.FEATURE_NO_TITLE); 
     getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN, 
       WindowManager.LayoutParams.FLAG_FULLSCREEN); 
     setContentView(R.layout.home); 



    } 

仍處於頂部得到的灰色標題欄。

回答

1

設置android:theme="@android:style/Theme.NoTitleBar"在清單文件應用水平。

<application 
     android:icon="@drawable/ic_launcher" 
     android:label="@string/name" 
     android:theme="@android:style/Theme.NoTitleBar" > 
0

您可以通過在應用程序清單中指定標題欄來禁用它。

android:theme="@android:style/Theme.NoTitleBar"

0
public void onCreate(Bundle savedInstanceState) { 
    super.onCreate(savedInstanceState); 
    requestWindowFeature(Window.FEATURE_NO_TITLE); 
    getWindow().setLayout(LayoutParams.FILL_PARENT, LayoutParams.FILL_PARENT);// try this 
    setContentView(R.layout.home);