Here you can find the source of isViewFromClass(Class type, View currentViewTocross)
@SuppressWarnings({ "unchecked", "rawtypes" }) public static boolean isViewFromClass(Class type, View currentViewTocross)
//package com.java2s; import android.view.View; public class Main { @SuppressWarnings({ "unchecked", "rawtypes" }) public static boolean isViewFromClass(Class type, View currentViewTocross) { if (type.isAssignableFrom(currentViewTocross.getClass())) { return true; }/*from ww w . j a v a2 s. c om*/ return false; } }