Android theme won't apply to activity
问题 When I set the background color in the layout everything works perfectly. However, when I try to set the it from a theme it won't work. It seems I'm doing something wrong. Here is the code. Manifest: <activity android:name="com.example.somma.MainActivity" android:label="@string/app_name" android:theme="@style/custom_title_theme" > <intent-filter> <action android:name="android.intent.action.MAIN" /> <category android:name="android.intent.category.LAUNCHER" /> </intent-filter> </activity>