2013-10-31 3 views
1

내 전체 응용 프로그램에서 ActionBar을 제거해야하므로 Theme.NoTitleBar을 내 매니페스트의 코드에 추가했습니다.제목 표시 줄을 제거하면 전체 응용 프로그램 배경이 검게 표시됩니다.

다음은 내

매니페스트
<?xml version="1.0" encoding="utf-8"?> 
<manifest xmlns:android="http://schemas.android.com/apk/res/android" 
    package="com.beleeta.bileetacrm" 
    android:versionCode="1" 
    android:versionName="1.0" > 

    <uses-sdk 
     android:minSdkVersion="11" 
     android:targetSdkVersion="17" /> 

    <application 
     android:allowBackup="true" 
     android:icon="@drawable/ic_launcher" 
     android:label="@string/app_name" 
     android:theme="@android:style/Theme.NoTitleBar" > 
     <activity 
      android:name="com.beleeta.bileetacrm.Home" 
      android:label="@string/app_name" > 
      <intent-filter> 
       <action android:name="android.intent.action.MAIN" /> 

       <category android:name="android.intent.category.LAUNCHER" /> 
      </intent-filter> 
     </activity> 
    </application> 

</manifest> 

입니다 그러나,이 검은보고 전체 응용 프로그램 배경을 만들! 이 변경 작업을 수행하기 전에 응용 프로그램이 흰색이었고 그 코드는 다음과 같습니다.

<?xml version="1.0" encoding="utf-8"?> 
<manifest xmlns:android="http://schemas.android.com/apk/res/android" 
    package="com.beleeta.bileetacrm" 
    android:versionCode="1" 
    android:versionName="1.0" > 

    <uses-sdk 
     android:minSdkVersion="11" 
     android:targetSdkVersion="17" /> 

    <application 
     android:allowBackup="true" 
     android:icon="@drawable/ic_launcher" 
     android:label="@string/app_name" 
     android:theme="@style/AppTheme" > 
     <activity 
      android:name="com.beleeta.bileetacrm.Home" 
      android:label="@string/app_name" > 
      <intent-filter> 
       <action android:name="android.intent.action.MAIN" /> 

       <category android:name="android.intent.category.LAUNCHER" /> 
      </intent-filter> 
     </activity> 
    </application> 

</manifest> 

왜 이런 일이 발생합니까? 이걸 어떻게 없앨 수 있습니까? 이 작업 표시 줄을 처음으로 다루는 것입니다.

내 분 SDK가 11

답변

4

기본 Theme (따라서, Theme.NoTitleBar)는 어두운 테마입니다 - 당신이 빛 Theme.Light.NoTitleBar를 사용할 수있는 테마 (즉, 배경 동안).

+0

간단하고 간단합니다! 이런 식으로 코드에 서투른 일은 ... 이것은 받아 들여진 대답이되어야합니다. – GeertVc

1

매니페스트 파일에서 android:theme="@android:style/Theme.NoTitleBar"을 제거하십시오. 이 내용을 추가하려면 setcontentview를 실행하기 전에 모든 클래스에이

this.requestWindowFeature(Window.FEATURE_NO_TITLE); 

을 추가하십시오.