2013-02-27 35 views
1

我的應用程序顯示Nexus 7上頂部標題欄,我無法隱藏它。我的文件:無法隱藏Nexus 7上的標題頂部欄

styles.xml

<!-- 
    Base application theme, dependent on API level. This theme is replaced 
    by AppBaseTheme from res/values-vXX/styles.xml on newer devices. 
--> 
<style name="MyAppBaseTheme" parent="android:Theme.Light.NoTitleBar"> 
    <!-- 
     Theme customizations available in newer API levels can go in 
     res/values-vXX/styles.xml, while customizations related to 
     backward-compatibility can go here. 
    --> 
</style> 

<!-- Application theme. --> 
<style name="MyAppTheme" parent="MyAppBaseTheme"> 
    <!-- All customizations that are NOT specific to a particular API-level can go here. --> 
</style> 

值-V11/styles.xml

<!-- 
    Base application theme for API 11+. This theme completely replaces 
    AppBaseTheme from res/values/styles.xml on API 11+ devices. 
--> 
<style name="MyAppBaseTheme" parent="android:Theme.Holo.Light.NoActionBar"> 
    <!-- API 11 theme customizations can go here. --> 
</style> 

值-V14/styles.xml

<!-- 
    Base application theme for API 14+. This theme completely replaces 
    AppBaseTheme from BOTH res/values/styles.xml and 
    res/values-v11/styles.xml on API 14+ devices. 
--> 
<style name="MyAppTheme" parent="android:Theme.Holo.Light.NoActionBar"> 
    <!-- API 14 theme customizations can go here. --> 
</style> 

我也添加到了我的主要活動:

@Override 
protected void onCreate(Bundle savedInstanceState) 
{ 
    super.onCreate(savedInstanceState); 

    requestWindowFeature(Window.FEATURE_NO_TITLE); 

回答

2

添加

getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN, 
          WindowManager.LayoutParams.FLAG_FULLSCREEN); 

爲了您的主要活動。

+0

謝謝你,這對我很有用。 – thomaus 2013-02-28 10:56:55

+0

@thomaus高興地幫助:) – SMT 2013-02-28 21:03:58