Android examples for java.lang:Integer
get Middle Value between two int values
//package com.java2s; public class Main { private static int getMiddleValue(int prev, int next, float factor) { return Math.round(prev + (next - prev) * factor); }//from w ww. j a v a2 s .c o m }