Make list bottom sheet closed default

This commit is contained in:
neslihanturan 2017-12-28 15:57:37 +03:00
parent 1af2db797b
commit ab858d524c
2 changed files with 2 additions and 2 deletions

View file

@ -121,6 +121,7 @@ public class NearbyActivity extends NavigationBaseActivity implements LocationUp
} }
}); });
bottomSheetBehavior.setState(BottomSheetBehavior.STATE_HIDDEN);
bottomSheetBehaviorForDetails = BottomSheetBehavior.from(bottomSheetDetails); bottomSheetBehaviorForDetails = BottomSheetBehavior.from(bottomSheetDetails);
bottomSheetBehaviorForDetails.setState(BottomSheetBehavior.STATE_HIDDEN); bottomSheetBehaviorForDetails.setState(BottomSheetBehavior.STATE_HIDDEN);
} }
@ -391,7 +392,7 @@ public class NearbyActivity extends NavigationBaseActivity implements LocationUp
Fragment fragment = new NearbyListFragment(); Fragment fragment = new NearbyListFragment();
fragment.setArguments(bundle); fragment.setArguments(bundle);
fragmentTransaction.replace(R.id.container_sheet, fragment); fragmentTransaction.replace(R.id.container_sheet, fragment);
bottomSheetBehavior.setState(BottomSheetBehavior.STATE_EXPANDED); bottomSheetBehavior.setState(BottomSheetBehavior.STATE_HIDDEN);
//TODO replace this sheet for details map //TODO replace this sheet for details map
fragmentTransaction.commitAllowingStateLoss(); fragmentTransaction.commitAllowingStateLoss();
} }

View file

@ -1,4 +1,3 @@
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android"> <selector xmlns:android="http://schemas.android.com/apk/res/android">
<item <item
android:state_enabled="false" android:state_enabled="false"