use of org.wikipedia.search.SearchFragment in project apps-android-wikipedia by wikimedia.
the class PageActivity method openSearchFragment.
@SuppressLint("CommitTransaction")
private void openSearchFragment(@NonNull SearchInvokeSource source, @Nullable String query) {
Fragment fragment = searchFragment();
if (fragment == null) {
fragment = SearchFragment.newInstance(source, StringUtils.trim(query));
getSupportFragmentManager().beginTransaction().add(R.id.activity_page_container, fragment).commitNowAllowingStateLoss();
}
}
Aggregations