我创建了一个BottomSheetDialogFragment
,我想调整它的最大扩展高度。我怎样才能做到这一点?我可以找回BottomSheetBehaviour
,但我能找到的只是一个偷看高度的制定者,但没有扩大的高度。
public class DialogMediaDetails extends BottomSheetDialogFragment
{
@Override
public void setupDialog(Dialog dialog, int style)
{
super.setupDialog(dialog, style);
View view = View.inflate(getContext(), R.layout.dialog_media_details, null);
dialog.setContentView(view);
...
View bottomSheet = dialog.findViewById(R.id.design_bottom_sheet);
BottomSheetBehavior behavior = BottomSheetBehavior.from(bottomSheet);
behavior.setPeekHeight(...);
// how to set maximum expanded height???? Or a minimum top offset?
}
}
修改
为什么我需要那个?因为我在全屏活动中显示BottomSheet
对话框,如果BottomSheet
在顶部留下空格,看起来很糟糕......
答案 0 :(得分:20)
正在包装高度,因为膨胀的视图被添加到具有layout_height=wrap_content
的FrameLayout。请参阅https://github.com/dandar3/android-support-design/blob/master/res/layout/design_bottom_sheet_dialog.xml处的FrameLayout(R.id.design_bottom_sheet)。
下面的类使得底部工作表全屏,背景透明并完全展开到顶部。
public class FullScreenBottomSheetDialogFragment extends BottomSheetDialogFragment {
@CallSuper
@Override
public void onViewCreated(View view, @Nullable Bundle savedInstanceState) {
super.onViewCreated(view, savedInstanceState);
ButterKnife.bind(this, view);
}
@Override
public void onStart() {
super.onStart();
Dialog dialog = getDialog();
if (dialog != null) {
View bottomSheet = dialog.findViewById(R.id.design_bottom_sheet);
bottomSheet.getLayoutParams().height = ViewGroup.LayoutParams.MATCH_PARENT;
}
View view = getView();
view.post(() -> {
View parent = (View) view.getParent();
CoordinatorLayout.LayoutParams params = (CoordinatorLayout.LayoutParams) (parent).getLayoutParams();
CoordinatorLayout.Behavior behavior = params.getBehavior();
BottomSheetBehavior bottomSheetBehavior = (BottomSheetBehavior) behavior;
bottomSheetBehavior.setPeekHeight(view.getMeasuredHeight());
((View)bottomSheet.getParent()).setBackgroundColor(Color.TRANSPARENT)
});
}
}
---编辑2018年8月30日--- 一年后,我意识到背景是错误的。当用户拖动对话框时,这会将背景与内容一起拖动。 我修复了它,以便底部工作表的父视图被着色。
答案 1 :(得分:13)
我找到了一个更简单的答案;在您的示例中,使用此代码获取底部工作表的FrameLayout
sed: -e expression #1, char (some number): unterminated s' command
然后,您可以将该视图的布局参数上的高度设置为您想要将展开高度设置为的任何高度。
View bottomSheet = dialog.findViewById(R.id.design_bottom_sheet);
答案 2 :(得分:12)
BIG UPDATE 避免重复的代码我正在提供full answer的链接,您可以在其中找到有关如何获得Google地图等完整行为的所有说明。
我想调整它的最大扩展高度。我怎么能这样做?
BottomSheet
和BottomSheetDialogFragment
都使用了您可以在支持库23.x中找到的BottomSheetBehavior。
该Java类对mMinOffset
有两种不同的用途,其中一种用于定义用于绘制其内容的父级区域(可能是NestedScrollView
)。另一个用途是,如果你定义扩展的锚点,我的意思是,如果你从STATE_COLLAPSED
向上滑动它会动画你的BottomSheet
,直到他到达这个锚点,但如果你仍然可以继续滑动到覆盖所有父高(CoordiantorLayout Height)。
如果你看一下BottomSheetDialog
,你会看到这个方法:
private View wrapInBottomSheet(int layoutResId, View view, ViewGroup.LayoutParams params) {
final CoordinatorLayout coordinator = (CoordinatorLayout) View.inflate(getContext(),
android.support.design.R.layout.design_bottom_sheet_dialog, null);
if (layoutResId != 0 && view == null) {
view = getLayoutInflater().inflate(layoutResId, coordinator, false);
}
FrameLayout bottomSheet = (FrameLayout) coordinator.findViewById(android.support.design.R.id.design_bottom_sheet);
BottomSheetBehavior.from(bottomSheet).setBottomSheetCallback(mBottomSheetCallback);
if (params == null) {
bottomSheet.addView(view);
} else {
bottomSheet.addView(view, params);
}
// We treat the CoordinatorLayout as outside the dialog though it is technically inside
if (shouldWindowCloseOnTouchOutside()) {
final View finalView = view;
coordinator.setOnTouchListener(new View.OnTouchListener() {
@Override
public boolean onTouch(View v, MotionEvent event) {
if (isShowing() &&
MotionEventCompat.getActionMasked(event) == MotionEvent.ACTION_UP &&
!coordinator.isPointInChildBounds(finalView,
(int) event.getX(), (int) event.getY())) {
cancel();
return true;
}
return false;
}
});
}
return coordinator;
}
不知道你想要哪两种行为,但如果你需要第二种行为,请遵循以下步骤:
CoordinatorLayout.Behavior<V>
BottomSheetBehavior
文件复制到新文件。使用以下代码修改方法clampViewPositionVertical
:
@Override
public int clampViewPositionVertical(View child, int top, int dy) {
return constrain(top, mMinOffset, mHideable ? mParentHeight : mMaxOffset);
}
int constrain(int amount, int low, int high) {
return amount < low ? low : (amount > high ? high : amount);
}
添加新状态
public static final int STATE_ANCHOR_POINT = X;
修改下列方法:onLayoutChild
,onStopNestedScroll
,BottomSheetBehavior<V> from(V view)
和setState
(可选)
以下是它的外观:
[]
答案 3 :(得分:11)
它对我有用。在BottomSheetDialogFragment的onViewCreated()方法上添加代码
override fun onViewCreated(view: View, savedInstanceState: Bundle?) {
super.onViewCreated(view, savedInstanceState)
view.viewTreeObserver.addOnGlobalLayoutListener(object : ViewTreeObserver.OnGlobalLayoutListener {
override fun onGlobalLayout() {
view.viewTreeObserver.removeOnGlobalLayoutListener(this)
val dialog = dialog as BottomSheetDialog
val bottomSheet = dialog.findViewById<View>(com.google.android.material.R.id.design_bottom_sheet) as FrameLayout?
val behavior = BottomSheetBehavior.from(bottomSheet!!)
behavior.state = BottomSheetBehavior.STATE_EXPANDED
val newHeight = activity?.window?.decorView?.measuredHeight
val viewGroupLayoutParams = bottomSheet.layoutParams
viewGroupLayoutParams.height = newHeight ?: 0
bottomSheet.layoutParams = viewGroupLayoutParams
}
})
dialogView = view
}
别忘了删除viewTreeObserver。
override fun onDestroyView() {
dialogView?.viewTreeObserver?.addOnGlobalLayoutListener(null)
super.onDestroyView()
}
答案 4 :(得分:0)
科特林
对于我来说,我需要定义一个固定的高度,并执行以下操作:
val bottomSheet: View? = dialog.findViewById(R.id.design_bottom_sheet)
BottomSheetBehavior.from(bottomSheet!!).peekHeight = 250
通过这种方式,您还可以访问BottomSheetBehavior
的任何属性,例如halfExpandedRatio
答案 5 :(得分:0)
我建议不要使用 id 来查找视图。在 BottomSheetFragmentDialog
中,对话框是 BottomSheetDialog
,它显示底部工作表的行为。您可以使用它来设置查看高度。
(dialog as BottomSheetDialog).behavior.peekHeight = ...