Java Code Examples for android.view.View#postInvalidateOnAnimation()

The following examples show how to use android.view.View#postInvalidateOnAnimation() . You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: Utils.java    From StockChart-MPAndroidChart with MIT License 5 votes vote down vote up
/**
 * Original method view.postInvalidateOnAnimation() only supportd in API >=
 * 16, This is a replica of the code from ViewCompat.
 *
 * @param view
 */
@SuppressLint("NewApi")
public static void postInvalidateOnAnimation(View view) {
    if (Build.VERSION.SDK_INT >= 16) {
        view.postInvalidateOnAnimation();
    } else {
        view.postInvalidateDelayed(10);
    }
}
 
Example 2
Source File: ApiCompatibilityUtils.java    From android-chromium with BSD 2-Clause "Simplified" License 5 votes vote down vote up
/**
 * @see android.view.View#postInvalidateOnAnimation()
 */
public static void postInvalidateOnAnimation(View view) {
    if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.JELLY_BEAN) {
        view.postInvalidateOnAnimation();
    } else {
        view.postInvalidate();
    }
}
 
Example 3
Source File: ApiCompatibilityUtils.java    From android-chromium with BSD 2-Clause "Simplified" License 5 votes vote down vote up
/**
 * @see android.view.View#postInvalidateOnAnimation()
 */
public static void postInvalidateOnAnimation(View view) {
    if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.JELLY_BEAN) {
        view.postInvalidateOnAnimation();
    } else {
        view.postInvalidate();
    }
}
 
Example 4
Source File: UiHelper.java    From android-ui with Apache License 2.0 5 votes vote down vote up
public static void postInvalidateOnAnimation(View view) {
	if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.JELLY_BEAN) {
		view.postInvalidateOnAnimation();
	} else {
		view.invalidate();
	}
}
 
Example 5
Source File: Utils.java    From JNChartDemo with Apache License 2.0 5 votes vote down vote up
/**
 * Original method view.postInvalidateOnAnimation() only supportd in API >=
 * 16, This is a replica of the code from ViewCompat.
 *
 * @param view
 */
@SuppressLint("NewApi")
public static void postInvalidateOnAnimation(View view) {
    if (Build.VERSION.SDK_INT >= 16)
        view.postInvalidateOnAnimation();
    else
        view.postInvalidateDelayed(10);
}
 
Example 6
Source File: Utils.java    From NetKnight with Apache License 2.0 5 votes vote down vote up
/**
 * Original method view.postInvalidateOnAnimation() only supportd in API >=
 * 16, This is a replica of the code from ViewCompat.
 *
 * @param view
 */
@SuppressLint("NewApi")
public static void postInvalidateOnAnimation(View view) {
    if (Build.VERSION.SDK_INT >= 16)
        view.postInvalidateOnAnimation();
    else
        view.postInvalidateDelayed(10);
}
 
Example 7
Source File: Utils.java    From Stayfit with Apache License 2.0 5 votes vote down vote up
/**
 * Original method view.postInvalidateOnAnimation() only supportd in API >=
 * 16, This is a replica of the code from ViewCompat.
 *
 * @param view
 */
@SuppressLint("NewApi")
public static void postInvalidateOnAnimation(View view) {
    if (Build.VERSION.SDK_INT >= 16)
        view.postInvalidateOnAnimation();
    else
        view.postInvalidateDelayed(10);
}
 
Example 8
Source File: Utils.java    From iMoney with Apache License 2.0 5 votes vote down vote up
/**
 * Original method view.postInvalidateOnAnimation() only supportd in API >=
 * 16, This is a replica of the code from ViewCompat.
 *
 * @param view
 */
@SuppressLint("NewApi")
public static void postInvalidateOnAnimation(View view) {
    if (Build.VERSION.SDK_INT >= 16)
        view.postInvalidateOnAnimation();
    else
        view.postInvalidateDelayed(10);
}
 
Example 9
Source File: Utils.java    From android-kline with Apache License 2.0 5 votes vote down vote up
/**
 * Original method view.postInvalidateOnAnimation() only supportd in API >=
 * 16, This is a replica of the code from ViewCompat.
 *
 * @param view
 */
@SuppressLint("NewApi")
public static void postInvalidateOnAnimation(View view) {
    if (Build.VERSION.SDK_INT >= 16)
        view.postInvalidateOnAnimation();
    else
        view.postInvalidateDelayed(10);
}
 
Example 10
Source File: Utils.java    From Ticket-Analysis with MIT License 5 votes vote down vote up
/**
 * Original method view.postInvalidateOnAnimation() only supportd in API >=
 * 16, This is a replica of the code from ViewCompat.
 *
 * @param view
 */
@SuppressLint("NewApi")
public static void postInvalidateOnAnimation(View view) {
    if (Build.VERSION.SDK_INT >= 16)
        view.postInvalidateOnAnimation();
    else
        view.postInvalidateDelayed(10);
}
 
Example 11
Source File: am.java    From MiBandDecompiled with Apache License 2.0 4 votes vote down vote up
public static void b(View view)
{
    view.postInvalidateOnAnimation();
}
 
Example 12
Source File: e.java    From MiBandDecompiled with Apache License 2.0 4 votes vote down vote up
static void a(View view)
{
    view.postInvalidateOnAnimation();
}
 
Example 13
Source File: AnimUtil.java    From MiBandDecompiled with Apache License 2.0 4 votes vote down vote up
public static void seekAnim(View view, AnimatorSet animatorset, long l1)
{
    seekAnim(animatorset, l1);
    view.postInvalidateOnAnimation();
}
 
Example 14
Source File: ViewCompatJB.java    From CodenameOne with GNU General Public License v2.0 4 votes vote down vote up
public static void postInvalidateOnAnimation(View view) {
    view.postInvalidateOnAnimation();
}
 
Example 15
Source File: ViewCompatJB.java    From adt-leanback-support with Apache License 2.0 4 votes vote down vote up
public static void postInvalidateOnAnimation(View view) {
    view.postInvalidateOnAnimation();
}
 
Example 16
Source File: ViewCompatJB.java    From letv with Apache License 2.0 4 votes vote down vote up
public static void postInvalidateOnAnimation(View view) {
    view.postInvalidateOnAnimation();
}
 
Example 17
Source File: ViewCompatJB.java    From V.FlyoutTest with MIT License 4 votes vote down vote up
public static void postInvalidateOnAnimation(View view) {
    view.postInvalidateOnAnimation();
}
 
Example 18
Source File: ViewCompatJB.java    From guideshow with MIT License 4 votes vote down vote up
public static void postInvalidateOnAnimation(View view) {
    view.postInvalidateOnAnimation();
}
 
Example 19
Source File: ViewCompat.java    From SmartSwipe with Apache License 2.0 3 votes vote down vote up
/**
 * <p>Cause an invalidate to happen on the next animation time step, typically the
 * next display frame.</p>
 *
 * <p>This method can be invoked from outside of the UI thread
 * only when this View is attached to a window.</p>
 *
 * @param view View to invalidate
 */
public static void postInvalidateOnAnimation(View view) {
    if (Build.VERSION.SDK_INT >= 16) {
        view.postInvalidateOnAnimation();
    } else {
        view.postInvalidate();
    }
}