MD-CollapsingToolbarLayout 可折叠标题栏

 顾名思义,CollapsingToolbarLayout是一个作用于Toolbar基础之上的布局,它也是由Design Support库提供的。CollapsingToolbarLayout 可以让Toolbar的效果变得更加丰富,不仅仅是展示一个标题栏,而是能够实现非常华丽的效果。
不过,CollapsingToolbarLayout 是不能独立存在的,它在设计的时候就被限定只能作为AppBarLayout的直接子布局来使用。而AppBarLayout又必须是CoordinatorLayout的子布局。

<?xml version="1.0" encoding="utf-8"?>
<android.support.design.widget.CoordinatorLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:fitsSystemWindows="true">

    <android.support.design.widget.AppBarLayout
        android:id="@+id/appBar"
        android:layout_width="match_parent"
        android:layout_height="250dp"
        android:fitsSystemWindows="true">

        <android.support.design.widget.CollapsingToolbarLayout
            android:id="@+id/collapsing_toolbar"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"
            android:fitsSystemWindows="true"
            app:contentScrim="?attr/colorPrimary"
            app:layout_scrollFlags="scroll|exitUntilCollapsed">

            <ImageView
                android:id="@+id/fruit_image_view"
                android:layout_width="match_parent"
                android:layout_height="match_parent"
                android:scaleType="centerCrop"
                android:fitsSystemWindows="true"
                app:layout_collapseMode="parallax" />

            <android.support.v7.widget.Toolbar
                android:id="@+id/toolbar"
                android:layout_width="match_parent"
                android:layout_height="?attr/actionBarSize"
                app:layout_collapseMode="pin" />
        </android.support.design.widget.CollapsingToolbarLayout>
    </android.support.design.widget.AppBarLayout>

    <android.support.v4.widget.NestedScrollView
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        app:layout_behavior="@string/appbar_scrolling_view_behavior">

        <LinearLayout
            android:orientation="vertical"
            android:layout_width="match_parent"
            android:layout_height="wrap_content">

            <android.support.v7.widget.CardView
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:layout_marginBottom="15dp"
                android:layout_marginLeft="15dp"
                android:layout_marginRight="15dp"
                android:layout_marginTop="35dp"
                app:cardCornerRadius="4dp">

                <TextView
                    android:id="@+id/fruit_content_text"
                    android:layout_width="match_parent"
                    android:layout_height="wrap_content"
                    android:layout_margin="10dp" />
            </android.support.v7.widget.CardView>
        </LinearLayout>
    </android.support.v4.widget.NestedScrollView>

    <android.support.design.widget.FloatingActionButton
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_margin="16dp"
        android:src="@drawable/ic_comment"
        app:layout_anchor="@id/appBar"
        app:layout_anchorGravity="bottom|end" />
</android.support.design.widget.CoordinatorLayout>

CollapsingToolbarLayout新增了一些属性:

android: theme属性指定了一个ThemeOverlay.AppCompat.Dark.ActionBar 的主题,其实对于这部分我们也并不陌生,因为之前在activity_main.xml中给Toolbar 指定的也是这个主题,只不过这里要实现更加高级的Toolbar效果,因此需要将这个主题的指定提到上一层来。app:contentScrim属性用于指定CollapsingToolbarLayout 在趋于折叠状态以及折叠之后的背景色,其实CollapsingToolbarLayout在折叠之后就是一个普通的Toolbar, 那么背景色肯定应该是colorPrimary 了,具体的效果我们待会儿就能看到。app: layout_scrollFlags 属性我们也是见过的,只不过之前是给Toolbar指定的,现在也移到外面来了。其中,scroll 表示CollapsingToolbarLayout会随着水果内容详情的滚动一起滚动,exitUntilCollapsed表示当CollapsingToolbarlayout随着滚动完成折叠之后就保留在界面上,不再移出屏幕

CollapsingToolbarLayout里面包着两个布局,一个是Imageview和一个toolbar;这里新增的属性有app:layout_collapseMode:表示当前控件在CollapsingToolbarLayout折叠过程中的折叠模式

其中Toolbar指定成pin,表示在折叠的过程中位置始终保持不变,
ImageView 指定成parallax, 表示会在折叠的过程中产生一定的错位偏移,这种模式的视觉效果会非常好。

可以看到,这里还加入了一个FloatingActionButton,它和AppBarLayout以及NestedScrollView是平级的。FlatingActionButton 中使用app: layout_anchor属性指定了一个锚点,我们将锚点设置为AppBarLayout,这样悬浮按钮就会出现在水果标题栏的区域内,接着又使用app:layout_anchorGravity属性将悬浮按钮定位在标题栏区域的右下角。

新属性:android:fitsSystemWindows。只不过很可惜的是,在Android 5.0 系统之前,我们是无法对状态栏的背景或颜色进行操作的,那个时候也还没有Material Design的概念。但是Android 5.0 及之后的系统都是支持这个功能的,因此这里我们就来实现一个系统差异型的效果,在Android 5.0及之后的系统中,使用背景图和状态栏融合的模式,在之前的系统中使用普通的模式。使用value21文件夹进行适配。

关于折叠模式:可以看一下源码

 AppBarLayout有接口,可以监听滑动:

 

 private fun initAppBarStatus() {
        binding.appbar.addOnOffsetChangedListener(AppBarLayout.OnOffsetChangedListener { appBarLayout, verticalOffset ->
            val scrollRange = appBarLayout.totalScrollRange
            var fraction = 1f * (scrollRange + verticalOffset) / scrollRange
            if (fraction < 0) {
                fraction = 0f
            }
            val alpha = ((1f - fraction) * 255f).toInt()
            val color = Color.argb(alpha, 0xff, 0xff, 0xff)
            binding.toolbar.setBackgroundColor(color)

            if (Math.abs(verticalOffset) >= appBarLayout.totalScrollRange * 0.8f) {
               // appbar_text_title.setVisibility(View.VISIBLE)
                ll_location.visibility=View.GONE
            } else {
               // appbar_text_title.setVisibility(View.INVISIBLE)
                ll_location.visibility=View.VISIBLE
            }

        })
    }

 

v-md-editor是一个富文本编辑器组件,它通常用于Vue.js应用中。如果你想要隐藏导航栏上的图片显示选项(无序列表和有序列表图标),这可能涉及到定制其样式或者修改它的默认配置。具体的步骤可能会因插件的不同版本而有所差异,但基本思路包括: 1. **检查文档**:首先查看v-md-editor的官方文档或GitHub仓库,确认是否有提供自定义选项或配置项来控制是否显示特定功能。 2. **CSS隐藏**:如果插件支持配置,你可以尝试通过CSS来隐藏导航栏元素。例如,可以设置`.v-md-editor__toolbar button`选择器来改变图标颜色、透明度或完全移除它们的样式。 ```css .v-md-editor__toolbar button[title="Insert Unordered List"] { display: none; } .v-md-editor__toolbar button[title="Insert Ordered List"] { display: none; } ``` 3. **JavaScript修改**:如果需要更深入地控制,你可以在初始化编辑器时传入自定义配置,比如设置`toolbarButtons`属性来排除某些按钮。 ```javascript import Vmde from 'v-md-editor'; const config = { toolbarButtons: ['bold', 'italic', 'link', ...] // 排除'unordered-list'和'order-list' }; const editor = new Vmde({ options: config }); ``` 4. **API调用**:如果插件允许动态操作,你还可以在运行时调用API来临时禁用或启用这些功能。 请注意,以上步骤需根据v-md-editor的具体实现来调整。在实际操作前,记得先阅读并理解插件的官方文档,因为不是所有功能都能直接通过这种方式隐藏。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值