int a;
static int a;
Both takes same memory
I just came by this today and i don't know the use of doing so ::
private static final float INDICATOR_RADIUS = 1.0f;
this is same as
private final float INDICATOR_RADIUS = 1.0f;
I'm not getting why they(http://developer.samsung.com/android/samples/Golf) did so?They used this many times