设置Activity半透明显示:
1,可以直接设置Manifest中activity:
android:theme="@android:style/Theme.Translucent"
但是感觉透明度太高,效果不好。
2,自定义style:
(1)
<!--
<style name="Translucent" parent="@android:style/Theme.Translucent">
<item name="android:windowBackground">@color/translucent_background_color</item>
<item name="android:windowNoTitle">true</item>
</style>
-->
<style name&#