forked from organicmaps/organicmaps
Crashfix for search disconnected fragment.
This commit is contained in:
parent
5b12085e89
commit
b9d70e55cf
1 changed files with 4 additions and 1 deletions
|
@ -86,7 +86,7 @@ public class SearchFragment extends MWMListFragment implements View.OnClickListe
|
|||
final Bundle args = getArguments();
|
||||
if (args != null)
|
||||
{
|
||||
mSearchEt.setText(args.getString(SearchActivity.EXTRA_QUERY, ""));
|
||||
mSearchEt.setText(args.getString(SearchActivity.EXTRA_QUERY));
|
||||
runSearch();
|
||||
}
|
||||
|
||||
|
@ -308,6 +308,9 @@ public class SearchFragment extends MWMListFragment implements View.OnClickListe
|
|||
@SuppressWarnings("unused")
|
||||
public void updateData(final int count, final int resultID)
|
||||
{
|
||||
if (!isAdded())
|
||||
return;
|
||||
|
||||
getActivity().runOnUiThread(new Runnable()
|
||||
{
|
||||
@Override
|
||||
|
|
Loading…
Add table
Reference in a new issue