我在manifest.xml中将Theme.Translucent.NoTitleBar
设置为活动的样式属性。
<activity android:theme="@android:style/Theme.Translucent.NoTitleBar"/>
我需要这个,因为在启动活动时,我会从底部到顶部为此活动的根布局设置动画(就像iPhone上的ModalPresentation
一样)并且我不希望在此期间有黑色背景动画。
Everythings有效,但在应用半透明主题后,我在这个rootlayout中放置的ListView
的表现非常慢。
我已经尝试设置ListView
和rootlayout的BackgroundColors,但似乎android在绘制时仍然会考虑透明度。
答案 0 :(得分:0)
您是否尝试过getWindow().setFormat(PixelFormat.RGBA_4444);
中的onCreate()
?