I want to call onCreate(Bundle cicici); from other method then i am getting \"NullPointerException\", so please guide me how can i call the onCreate() from another method().
you should create the bundle again. savedInstanceState is local to onCreate method. try
Bundle tempBundle = new Bundle(); onCreate(tempBundle);
It should work.