我如何在 Android 开发者文档中找到实施细节?

How can i find thd implementation details in Android Developers Doc?

当我查看其他 Android 代码时,我发现 class 扩展了 BottomSheetDialogFragment。我想使用它(BottomSheetDialogFragment),然后我发现它需要在build.gradle(app)中添加实现。我浏览过这个网站 BottomSheetDialogFragment in official Doc。但是我找不到任何关于 BottomSheetDialogFragment 的实现细节。我终于在 Google 的其他教程中找到了实现。我想知道如何在官方文档中找到实现细节。

BottomSheetDialogFragment 由 Material 组件库提供:

文档中有关用法的相关部分:

  • 子类BottomSheetDialogFragment
  • 覆盖 onCreateView 方法。
  • 使用 show 的两个版本之一来显示对话框。注意 BottomSheetDialogFragmentAppCompatFragment 的子类,这意味着您需要使用 Activity.getSupportFragmentManager().

注意:不要在 BottomSheetDialogFragment 上调用 setOnCancelListenersetOnDismissListener,而是可以在必要时覆盖 onCancel(DialogInterface)onDismiss(DialogInterface)