Back to project page Android-Photo-Zoom.
The source code is released under:
Apache License
If you think the Android project Android-Photo-Zoom 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.photoview; /*from w w w .ja v a 2 s . co m*/ import android.annotation.TargetApi; import android.view.View; @TargetApi(16) public class SDK16 { public static void postOnAnimation(View view, Runnable r) { view.postOnAnimation(r); } }