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:cacheColorHint="@android:color/transparent" on yourListView`。
android:cacheColorHint="@android:color/transparent" on your
您可能正在泄漏内存,在调试时检查您的 logcat 并查看是否有任何与堆大小相关的消息或跟踪 gc 被调用的次数?是什么样的景色?
编辑:如果它是一个列表视图,请尝试@Ovidiu's answer..