Android 子fragment中获取父fragment中的控件

下面展示了如何在子fragment中获取父fragment的底部导航控件

BottomNavigationView bottomNavigationView = (BottomNavigationView) getParentFragment().getView().findViewById(R.id.bv);

主要需要强转为指定的控件

你可能感兴趣的:(Android,前端)