I am not sure if that title makes a lot of sense, kind of hard to explain what I want, but I'll give it a go.
I have to fragment, ListFragment and MyFragment. If the device is in portrait, i.e. both fragments can't fit on the screen together then only LisFragment is shown. I have an activity called MyActivity which hosts the fragments and displays the relevant fragment for the relevant device orientation.
The user can then press a button to perform a search using startActivityForResult which then does a call to function within MyActivity to actually perform what is required.
If the phone is in landscape, i.e. both fragments are visible it successfully calls the function from within the PasswordList fragment. However, if the phone is in portrait, the ListFragment is null so the function doesn't get called. Below is the code that I am having the problem with
public void performSearch(ArrayList<Spanned> passwords) {
PasswordList passwordList = (PasswordList)getFragmentManager().findFragmentById(R.id.passwordListFragment);
passwordList.performingSearch = true;
passwordList.performSearch(passwords);
}
The PasswordList is the ListFragment that I am talking about above, when the phone is in landscape passwordList works and I can perform the performSearch function. If the phone is portrait even though the ListFragment is being shown it returns Null so the performSearch can't be performed.
How can I perform the performSearch function in either way. Thanks for any help you can provide.