Easy bug fix due to focus

This commit is contained in:
neslihanturan 2017-12-25 23:49:07 +03:00 committed by maskara
parent 4b78d13568
commit e099c72cc9

View file

@ -208,6 +208,9 @@ public class NearbyMapFragment extends android.support.v4.app.Fragment {
} else if (slideOffset == 0){
transparentView.setClickable(false);
}
} else {
// Not to allow user swipe down, she should press back instead
//bottomSheetDetailsBehavior.setState(BottomSheetBehavior.STATE_COLLAPSED);
}
}
});
@ -325,10 +328,13 @@ public class NearbyMapFragment extends android.support.v4.app.Fragment {
moreInfo.setVisibility(View.VISIBLE);
break;
case (BottomSheetBehavior.STATE_HIDDEN):
transparentView.setClickable(false);
transparentView.setAlpha(0);
if (!fabList.isShown()) fabList.show();
closeFabs(isFabOpen);
hideFAB();
this.getView().requestFocus();
moreInfo.setVisibility(View.GONE);
this.getView().clearFocus();
break;
}