我正在制作我的音乐播放器。我希望它是透明的(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" />
答案 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>