问题标签 [bottom-sheet]
For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.
android - BottomSheet 视图 Android
我在我的项目中集成了底页视图。我想在按钮单击时打开底部工作表视图到屏幕高度的 50%,然后在用户可以通过拖动到父高度或折叠到底部后将其拉动。
我试过了,但是当我单击按钮打开它时,底部的工作表占据了父级的全部高度。
XML 代码:
代码:
android - 使用支持库中的 BottomSheet 时如何使背景变暗?
背景怎么能像这里显示的那样变暗?
CoordinatorLayout
我已经使用和正常设置了它BottomSheetBehavior
。
android - AS 找不到 BottomSheetBehavior_Params、_behavior_peekHeight 和 _behavior_hideable
我刚刚将我的应用程序更新到支持库版本 24.0.0,我收到了有关 BottomSheet 参数的一些错误。
编码:
Android Studio 找不到:
android.support.design.R.styleable.BottomSheetBehavior_Params
android.support.design.R.styleable.BottomSheetBehavior_Params_behavior_peekHeight
android.support.design.R.styleable.BottomSheetBehavior_Params_behavior_hideable
知道他们把它搬到哪里了吗?
android - Android BottomSheetDialogFragment 隐藏/显示行为
我正在使用 Android 的新支持库 24.0.0 支持库的BottomSheetDialogFragment
. 除了两件事之外,一切都很好。以前,当我使用普通旧时,DialogFragment
我使用以下两个属性
去除黑色阴影。
dialog.getWindow().setBackgroundDrawableResource(android.R.color.transparent)
;在外部区域中单击时防止片段解散。
dialog.requestWindowFeature(Window.FEATURE_NO_TITLE);
dialog.getWindow().setFlags(WindowManager.LayoutParams.FLAG_NOT_TOUCH_MODAL
,
;
在底部片材碎片的情况下,与上述内容相同的是什么。下面是我的 BottomSheetFragment 代码。
java - Not adequate behaviour of the BottomSheet
During the initialisation of the BottomView part of it appears in the bottom of the screen, when I'm trying to drag it by finger, it appears and then immediately disappear. How to fix it? Or how to make that all items of BottomSheet would appear in the screen, after the FloatActionButton is clicked?
Video of BottomSheet: https://www.youtube.com/watch?v=58bhlc-KfYA&feature=youtu.be
code of Activity:
RecyclerView Adapter inside the BottomSheet:
xml of Activity:
xml of RecyclerView item inside the BottomSheet:
android-viewpager - TabLayout、ViewPager 内 BottomSheetDialogFragment
我想要底部表,它在 viewpager 内显示两个片段。我使用了两个 Fragment 和 FragmentPagerAdapter 和 BottomSheetDialogFragment 来构建对话框。
我的问题出在 viewPager 中,第二个片段 recyclerview 不滚动。
Recyclerview 适配器
我的第一个片段代码(与第二个相同)
FragmentPagerAdapter
BottomSheetDialogFragment
}
我不知道问题在哪里,请帮助
java - 在应用程序中实现 BottomSheet
我正在尝试在我的应用程序中实现 BottomSheet。我正在学习安卓。我已经按照这里库页面中给出的说明实现了它。我使用了如下的java代码。
但我收到了类似的错误
我也在菜单文件夹中创建了名为grid_sheet的菜单 xml。我怎样才能使该菜单工作?
android - Android将锚点设置为底部表格
我想在我的底页上设置一个锚点:
我将 FAB 添加为 CoordinateLayout 的直接子级,并将底部工作表的 id 设置为 FAB 的 layout_anchor 并设置其 layout_anchorGravity。但它不起作用。FAB 不会移动。
android - android BottomSheet 在外部单击时如何折叠?
我已经使用 NestedScrollView 实现了底页行为。并且想知道在外面触摸时是否可以隐藏底部视图。