I'm working in a simple game, and having problems on collision detecting.
I've found on this question a method called isFilled
private static boolean isFilled(int pixel) {
return pixel != Color.TRANSPARENT;
}
The argument int pixel
comes from bitmap.getPixel(x,y)
Is there an equivalent method to bitmap.getPixel(x,y)
for a View?