Hi all,
I am new to Android development. I want to know how you all manage objects. For eg we make object as A a = new A(); and then manage that object. But, here, we call A.class;
My concern is that i dont want to call onCreate(),nor do i want to push UI screen. I just want to make 1 static object for 1 screen;and want to manage it throughout my application that is, instead of calling A.class; can i call A a = new A(),and manage that object without pushing,and whenever i need i push that screen. Is there someway ?
Thanks...