In my android application I have a strange bug. An instance variable like below gets assigned to it\'s default value unexpectedly at run time (in this case - false). When do thi
Java doesn't have "global variables".
You are talking about instance variables. They are initialized each time a new instance is created.
instance variables