Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在 android 1.6 中,背景颜色是纯色,但在 2.3 或更高版本中,对话框是透明的,更像是不透明度 80%。所以我创造了新的风格
<style name="SolidDialog" parent="android:Theme.Dialog"> </style>
但我应该在里面放什么??
采用:
<item name="android:background">#FF000000</item>
这是不透明的黑色(颜色的第一个字节是不透明度值,0=透明,255=完全不透明)。