2014-02-15 47 views
0

我已經提到了許多解決方案,但使用的是我的應用程序崩潰,如何禁用Android的活動

我使用的自定義主題,因爲我使用自定義操作欄

這種狀態或通知欄的代碼,我現在用的是風格

<style name="MyCustomTheme" parent="@android:style/Theme.Holo.Light"> 
     <item name="android:actionBarStyle">@style/MyActionBarTheme</item> 
    </style> 

而且使用下面的代碼崩潰我的應用程序

requestWindowFeature(Window.FEATURE_NO_TITLE); 
      getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN,WindowManager.LayoutParams.FLAG_FULLSCREEN); 
+0

你可以張貼我使用customtheme的logcat的 –

回答

0

你應該setContentView

if (Build.VERSION.SDK_INT < 16) { 
     getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN, 
       WindowManager.LayoutParams.FLAG_FULLSCREEN); 
} 
else 
{ 
    View decorView = getWindow().getDecorView(); 
    // Hide the status bar. 
    int uiOptions = View.SYSTEM_UI_FLAG_FULLSCREEN; 
    decorView.setSystemUiVisibility(uiOptions); 
} 
+0

前使用此功能,所以我的主題是安卓主題=「@風格/ MyCustomTheme」 –

+0

檢查更新 –

+0

是的,我的setContentView前加入該只在我的活動中。 –

相關問題