Back to project page PullToRefresh.
The source code is released under:
Apache License
If you think the Android project PullToRefresh listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package uk.co.senab.actionbarpulltorefresh.library.sdk; /*from w w w . j a va 2s.co m*/ import android.view.View; class CompatBase { static void setAlpha(View view, float alpha) { // NO-OP } static void postOnAnimation(View view, Runnable runnable) { view.postDelayed(runnable, 10l); } }