When I launch my activity i refresh my list with
swipeContainer.setRefreshing(true);
after refreshing is call
swipeContainer.setRefreshing(false);
But during the networkcalls The refreshIcon glitches, in a fraction of a second
and If I look to the Android Monitor I get these lines
D/OpenGLRenderer: endAllStagingAnimators on 0x7f926f5800 (RippleDrawable) with handle 0x7f8dcf50e0
D/OpenGLRenderer: endAllStagingAnimators on 0x7f7ce78000 (ListView) with handle 0x7f89455380
What does this mean? and how can I fix this that I don't get the glitches and messages?
it is realy annoying
EDIT 1 This is how I call my setRefreshing(true)
swipeContainer.post(new Runnable() {
@Override
public void run() {
swipeContainer.setRefreshing(true);
}
});