Add nearby list fragment to bottom sheet

This commit is contained in:
neslihanturan 2017-12-11 12:34:33 +03:00
parent 0fe5547e55
commit 773e072b95

View file

@ -394,7 +394,9 @@ public class NearbyActivity extends NavigationBaseActivity implements LocationUp
FragmentTransaction fragmentTransaction = getSupportFragmentManager().beginTransaction();
Fragment fragment = new NearbyListFragment();
fragment.setArguments(bundle);
fragmentTransaction.replace(R.id.container, fragment, fragment.getClass().getSimpleName());
fragmentTransaction.replace(R.id.container_sheet, fragment);
bottomSheetBehavior.setState(BottomSheetBehavior.STATE_EXPANDED);
//TODO replace this sheet for details map
fragmentTransaction.commitAllowingStateLoss();
}