3

我有一个活动,Theme.Translucent.NoTitleBar在 manifest.xml 中设置为活动的样式属性。

<activity android:theme="@android:style/Theme.Translucent.NoTitleBar"/>

我需要它,因为在启动活动时,我从底部到顶部(如 iPhone 上的)为此活动的 rootlayout 设置动画,ModalPresentation并且我不希望在此动画期间有黑色背景。

一切正常,但是ListView在应用半透明主题后,​​我放入此 rootlayout 的性能非常慢。

我已经尝试设置ListView和 rootlayout 的 BackgroundColors,但看起来,android 在绘图时仍然考虑透明度。

4

1 回答 1

0

你有没有试过:getWindow().setFormat(PixelFormat.RGBA_4444);onCreate()

于 2012-08-19T04:02:32.547 回答