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().
public void moreFriendsButtonClick(int id)
{
contentId= id;
onCreate(tempBundle);
}
Here i am passing int value, and
tempBundle=savedInstanceState;
and after that i am getting NullPointerException
you should create the bundle again. savedInstanceState is local to onCreate method. try
It should work.
This is what worked for me: