我需要控制Floating action button类中BottomSheet中的Fragment可见性,但是当我尝试设置它的可见性时,我收到此错误消息:



这是我的Fragment类中的内容:

private FloatingActionButton fabUpdateInfo;

fabUpdateInfo = getActivity().findViewById(R.id.fab_update);

fabUpdateInfo.setVisibility(View.GONE); //This is where the error message gets triggered

最佳答案

只需使用:

fabUpdateInfo.hide();
//or
fabUpdateInfo.show();

代替:
fabUpdateInfo.setVisibility();

10-06 11:17