android 如何设置底页完全父级高度?

70gysomp  于 2023-06-20  发布在  Android
关注(0)|答案(7)|浏览(155)

我正在尝试使用单击按钮上的ndroid-support-library 23.2调用BottomSheet。它的工作很好,但不采取充分的高度。它位于AppBarLayout下面。我在Android Documentation上没有找到任何解决方案
这是我的屏幕布局

这是我的代码。
activity_main.xml

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <android.support.design.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. xmlns:app="http://schemas.android.com/apk/res-auto"
  4. xmlns:tools="http://schemas.android.com/tools"
  5. android:id="@+id/main_content"
  6. android:layout_width="match_parent"
  7. android:layout_height="match_parent"
  8. android:fitsSystemWindows="true"
  9. tools:context=".MainActivity">
  10. <android.support.design.widget.AppBarLayout
  11. android:layout_width="match_parent"
  12. android:layout_height="wrap_content"
  13. android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar">
  14. <android.support.v7.widget.Toolbar
  15. android:id="@+id/toolbar"
  16. android:layout_width="match_parent"
  17. android:layout_height="?attr/actionBarSize"
  18. android:background="?attr/colorPrimary"
  19. app:layout_scrollFlags="snap|enterAlwaysCollapsed"
  20. app:popupTheme="@style/AppTheme.PopupOverlay" />
  21. <android.support.design.widget.TabLayout
  22. android:id="@+id/tabs"
  23. android:layout_width="match_parent"
  24. android:layout_height="wrap_content"
  25. android:background="?attr/colorPrimary"
  26. app:tabGravity="fill"
  27. app:tabIndicatorColor="#5be5ad"
  28. app:tabIndicatorHeight="4dp"
  29. app:tabMode="fixed" />
  30. </android.support.design.widget.AppBarLayout>
  31. <android.support.v4.view.ViewPager
  32. android:id="@+id/viewpager"
  33. android:layout_width="match_parent"
  34. android:layout_height="match_parent"
  35. app:layout_behavior="@string/appbar_scrolling_view_behavior" />
  36. <android.support.design.widget.FloatingActionButton
  37. android:id="@+id/fab"
  38. android:layout_width="wrap_content"
  39. android:layout_height="wrap_content"
  40. android:layout_gravity="bottom|end"
  41. android:layout_margin="@dimen/fab_margin"
  42. android:src="@android:drawable/ic_dialog_email" />
  43. <!-- BottomSheet Layout -->
  44. <FrameLayout
  45. android:id="@+id/bottom_sheet"
  46. android:layout_width="match_parent"
  47. android:layout_height="fill_parent"
  48. app:behavior_hideable="true"
  49. app:layout_behavior="android.support.design.widget.BottomSheetBehavior">
  50. </FrameLayout>
  51. </android.support.design.widget.CoordinatorLayout>

MainActivity.java

  1. View bottomSheet;
  2. private BottomSheetDialog mBottomSheetDialog;
  3. private void initView(){
  4. /*
  5. Bottom Sheet Initialization
  6. */
  7. CoordinatorLayout coordinatorLayout = (CoordinatorLayout)findViewById(R.id.main_content);
  8. // The View with the BottomSheetBehavior
  9. bottomSheet = coordinatorLayout.findViewById(R.id.bottom_sheet);
  10. behavior = BottomSheetBehavior.from(bottomSheet);
  11. // behavior.setState(BottomSheetBehavior.STATE_HIDDEN);
  12. behavior.setBottomSheetCallback(new BottomSheetBehavior.BottomSheetCallback() {
  13. @Override
  14. public void onStateChanged(@NonNull View bottomSheet, int newState) {
  15. // React to state change
  16. CommonMethods.getInstance().e("onStateChanged", "onStateChanged:" + newState);
  17. if (newState == BottomSheetBehavior.STATE_EXPANDED) {
  18. fab.setVisibility(View.GONE);
  19. } else {
  20. fab.setVisibility(View.VISIBLE);
  21. }
  22. }
  23. @Override
  24. public void onSlide(@NonNull View bottomSheet, float slideOffset) {
  25. // React to dragging events
  26. CommonMethods.getInstance().e("onSlide", "onSlide");
  27. }
  28. });
  29. behavior.setPeekHeight(100);
  30. }

点击事件代码:

  1. @Override
  2. public void onShareClick() {
  3. if (behavior.getState() == BottomSheetBehavior.STATE_EXPANDED) {
  4. behavior.setState(BottomSheetBehavior.STATE_COLLAPSED);
  5. }
  6. if(mBottomSheetDialog==null){
  7. mBottomSheetDialog = new BottomSheetDialog(this);
  8. View view = getLayoutInflater().inflate(R.layout.layout_bottomsheet, null);
  9. mBottomSheetDialog.setContentView(view);
  10. }
  11. mBottomSheetDialog.show();
  12. mBottomSheetDialog.setOnDismissListener(new DialogInterface.OnDismissListener() {
  13. @Override
  14. public void onDismiss(DialogInterface dialog) {
  15. mBottomSheetDialog = null;
  16. }
  17. });
  18. }
7d7tgy0s

7d7tgy0s1#

更换

  1. behavior.setPeekHeight(100);

  1. behavior.setPeekHeight(screenUtils.getHeight());

会解决你的问题

ssgvzors

ssgvzors2#

  1. public class ScreenUtils {
  2. Context ctx;
  3. DisplayMetrics metrics;
  4. public ScreenUtils(Context ctx) {
  5. this.ctx = ctx;
  6. WindowManager wm = (WindowManager) ctx
  7. .getSystemService(Context.WINDOW_SERVICE);
  8. Display display = wm.getDefaultDisplay();
  9. metrics = new DisplayMetrics();
  10. display.getMetrics(metrics);
  11. }
  12. public int getHeight() {
  13. return metrics.heightPixels;
  14. }
  15. public int getWidth() {
  16. return metrics.widthPixels;
  17. }
  18. public int getRealHeight() {
  19. return metrics.heightPixels / metrics.densityDpi;
  20. }
  21. public int getRealWidth() {
  22. return metrics.widthPixels / metrics.densityDpi;
  23. }
  24. public int getDensity() {
  25. return metrics.densityDpi;
  26. }
  27. public int getScale(int picWidth) {
  28. Display display
  29. = ((WindowManager) ctx.getSystemService(Context.WINDOW_SERVICE))
  30. .getDefaultDisplay();
  31. int width = display.getWidth();
  32. Double val = new Double(width) / new Double(picWidth);
  33. val = val * 100d;
  34. return val.intValue();
  35. }
  36. }

使用上面的类,我们可以像这样设置窥视高度。它将给予屏幕的最大高度。

  1. BottomSheetBehavior mBehavior = BottomSheetBehavior.from((View) contentView.getParent());
  2. ScreenUtils screenUtils=new ScreenUtils(getActivity());
  3. mBehavior.setPeekHeight(screenUtils.getHeight());
展开查看全部
rqdpfwrv

rqdpfwrv3#

不要使用BottomSheetDialog,只使用下面的默认行为(删除BottomSheetDialog代码)

  1. @Override
  2. public void onShareClick() {
  3. if (behavior.getState() == BottomSheetBehavior.STATE_HIDDEN || behavior.getState() == BottomSheetBehavior.STATE_COLLAPSED) {
  4. behavior.setState(BottomSheetBehavior.STATE_EXPANDED);
  5. } else {
  6. behavior.setState(BottomSheetBehavior.STATE_COLLAPSED);
  7. }
  8. }

使用BottomSheet布局到match_parent

  1. <FrameLayout
  2. android:id="@+id/bottom_sheet"
  3. android:layout_width="match_parent"
  4. android:layout_height="match_parent"
  5. app:behavior_hideable="true"
  6. app:layout_behavior="android.support.design.widget.BottomSheetBehavior">
  7. </FrameLayout>

通过以上更改,您可以看到带有全屏的底部表单

展开查看全部
kninwzqo

kninwzqo4#

简单地添加这个(Kotlin):

  1. bottomSheetDialog.behavior.state = BottomSheetBehavior.STATE_EXPANDED
bmvo0sr5

bmvo0sr55#

对于BottomSheetDialog,您需要将fitContents设置为false

  1. behavior.isFitToContents=false
  2. behavior.state=BottomSheetBehavior.STATE_EXPANDED
gstyhher

gstyhher6#

好吧,这个问题在Stackoverflow中重复了很多次,没有人得到答案。但经过一些实验,我得到了解决方案的家伙:

  1. class SortProductBottomSheet : BaseBottomSheet() {
  2. override fun onCreateView(
  3. inflater: LayoutInflater,
  4. container: ViewGroup?,
  5. savedInstanceState: Bundle?
  6. ): View = inflater.inflate(R.layout.dialog_blablabla, container, false)-
  7. override fun onViewCreated(view: View, savedInstanceState: Bundle?) {
  8. super.onViewCreated(view, savedInstanceState)
  9. //THIS IS OUR LIFESAVER
  10. val dm = Resources.getSystem().displayMetrics
  11. val rect = dm.run { Rect(0, 0, heightPixels, widthPixels) }
  12. view.minimumHeight = rect.height()
  13. }
  14. }
展开查看全部
4c8rllxm

4c8rllxm7#

对于Java,使用setState(BottomSheetBehavior.STATE_EXPANDED),如下所示

  1. final BottomSheetDialog bottomSheetDialog = new BottomSheetDialog(requireContext());
  2. bottomSheetDialog.setContentView(R.layout.bottom_sheet_layout);
  3. bottomSheetDialog.getBehavior().setState(BottomSheetBehavior.STATE_EXPANDED);

相关问题