如何使我的应用程序具有透明主题?

时间:2016-01-21 13:23:49

标签: android themes transparency

我正在制作我的音乐播放器。我希望它是透明的(Android背景几乎不可见)。结构:一个包含4个片段的活动(viewPager with tabs)。有什么想法吗?

<resources>

<!-- Base application theme. -->
<style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">
    <!-- Customize your theme here. -->
    <item name="colorPrimary">@color/colorPrimary</item>
    <item name="colorPrimaryDark">@color/colorPrimaryDark</item>
    <item name="colorAccent">@color/colorAccent</item>
</style>

<style name="AppTheme.NoActionBar">
    <item name="windowActionBar">false</item>
    <item name="windowNoTitle">true</item>
</style>

<style name="AppTheme.AppBarOverlay" parent="ThemeOverlay.AppCompat.Dark.ActionBar" />

<style name="AppTheme.PopupOverlay" parent="ThemeOverlay.AppCompat.Light" />

1 个答案:

答案 0 :(得分:1)

只需在您的活动主题

中使用此主题即可
android:theme="@android:style/Theme.Translucent.NoTitleBar"

这将使您的ACtivity的背景完全透明。您还可以扩展该主题并设置自定义windowBackground

styles.xml

<style name="MyTransparentTheme" parent="@android:style/Theme.Translucent.NoTitleBar">
    <item name="windowBackground">@color/my_transparent_color</item>
</style>

如果您使用AppCompat,则应将父主题更改为

<style name="MyTransparentTheme" parent="@style/Theme.AppCompat.Translucent.NoTitleBar">
    <item name="windowBackground">@color/my_transparent_color</item>
</style>