有什么办法从android ContentView获取BottomSheetDialog吗?在PopupWindow中,我可以通过PopupWindow方法获得popupWindow.getContentView()的 View 。但是,我找不到从ConentView获取BottomSheetDialog的任何方法。

最佳答案

请尝试以下方法:

View contentView = bottomSheetDialog.findViewById(android.R.id.content);

09-25 21:44