美文网首页
首页nav布局,其他界面有标题而我的界面无标题,但是不需要沉浸到

首页nav布局,其他界面有标题而我的界面无标题,但是不需要沉浸到

作者: 吉凶以情迁 | 来源:发表于2021-11-29 08:43 被阅读0次

首页其他界面有标题而我的界面无标题,但是不需要沉浸到状态栏的解决办法。

在首页xml根目录设置

    android:clipChildren="false"
    android:clipToPadding="false"

首页activity代码设置

     public boolean onNavigationItemSelected(@NonNull MenuItem item) {
                if (item.getItemId() == R.id.navigation_my) {
                    binding.toolBar.setAlpha(0);
                    binding.appBarLayout.setAlpha(0);4
//                    ObjectAnimator.ofFloat(binding.appBarLayout, "elevation", 1).setDuration(1).start();
                }else{
                  binding.toolBar.setAlpha(1);
                    binding.appBarLayout.setAlpha(1);
                }

我的界面fragment代码设置
我的界面根目录设置TranslationY为状态栏高度,同时隐藏actionbar

        int statusBarHeight = AppUtils.getStatusBarHeight(getActivity());
        int paddingHeight = statusBarHeight + AppUtils.getActionBarHeight(getActivity());
        getBinding().rootLinelayout.setTranslationY(-paddingHeight);
        ConstraintLayout.LayoutParams layoutparam = (ConstraintLayout.LayoutParams) getBinding().headWrap.getLayoutParams();
        layoutparam.topMargin = statusBarHeight;
        getBinding().headWrap.setLayoutParams(layoutparam);

相关文章

  • 首页nav布局,其他界面有标题而我的界面无标题,但是不需要沉浸到

    首页其他界面有标题而我的界面无标题,但是不需要沉浸到状态栏的解决办法。 在首页xml根目录设置 首页activit...

  • 无标题文章无标题文章无标题文章无标题文章无标题文章无标题文章无标

    无标题文章无标题文章无标题文章无标题文章无标题文章无标题文章无标题文章无标题文章 无标题文章无标题文章无标题文章无...

  • 无标题文章

    无标题文章无标题文章无标题文章无标题文章无标题文章无标题文章无标题文章无标题文章无标题文章无标题文章

  • 无标题文章

    无标题文章无标题文章无标题文章无标题文章无标题文章无标题文章无标题文章无标题文章无标题文章无标题文章无标题文章无标...

  • 无标题文章

    无标题文章无标题文章无标题文章无标题文章无标题文章无标题文章无标题文章无标题文章无标题文章无标题文章无标题文章无标...

  • fasfsdfdf

    无标题文章无标题文章无标题文章无标题文章无标题文章无标题文章无标题文章无标题文章无标题文章无标题文章无标题文章无标...

  • 无标题文章

    无标题文章无标题文章无标题文章无标题文章无标题文章无标题文章无标题文章无标题文章无标题文章无标题文章无标题文章无标...

  • 无标题文章

    无标题文章无标题文章无标题文章无标题文章无标题文章无标题文章无标题文章无标题文章无标题文章无标题文章无标题文章无标...

  • 无标题文章

    无标题文章无标题文章无标题文章无标题文章无标题文章无标题文章无标题文章无标题文章无标题文章无标题文章无标题文章无标...

  • 无标题文章

    无标题文章无标题文章无标题文章无标题文章无标题文章无标题文章无标题文章

网友评论

      本文标题:首页nav布局,其他界面有标题而我的界面无标题,但是不需要沉浸到

      本文链接:https://www.haomeiwen.com/subject/zcvkxrtx.html