Hello,
There wasn't any intention to hide the class name. It was just a
test code.
I did notice that finalize method was invoked.
public class HelloAndroidActivity extends Activity {
Handler mh = new MyHandler();
class MyHandler extends Handler {
public MyHandler() {}
protected void finalize() {
Log.e(TAG,"handler finalized...");
}
}
...
...
...