Frage

My activity style must be from AppCompat theme.

So I make custom style and set activity style in manifest.

But black background is shown.

Below is custom theme

<style name="TransparentTheme" parent="@style/Theme.AppCompat">

    <item name="android:background">@null</item>
    <item name="background">@null</item>

    <item name="android:windowBackground">@null</item>
    <item name="android:colorBackgroundCacheHint">@null</item>
    <item name="android:windowContentOverlay">@null</item>
    <item name="android:windowIsTranslucent">true</item>
    <item name="android:windowAnimationStyle">@null</item>
</style>
War es hilfreich?

Lösung

use @android:color/transparent instead of @null

Andere Tipps

Use #99000000 in background instead of null

Lizenziert unter: CC-BY-SA mit Zuschreibung
Nicht verbunden mit StackOverflow
scroll top