美文网首页Android技术知识Android Dev
SheetBehavior :扩展自BottomSheetBeh

SheetBehavior :扩展自BottomSheetBeh

作者: 轻微 | 来源:发表于2016-03-01 13:35 被阅读1941次

    dim.red

    放图

    sheet.gif sheet2.gif

    github
    在原有的基础上让BottomSheetBehavior 支持从上往下拉.

    xml 使用:

     
    
    <LinearLayout
        android:id="@+id/design_bottom_sheet"
        android:layout_width="match_parent"
        app:layout_behavior="@string/SheetBehavior"
        app:peekHeight=“50dp"
        app:hiddenEnable=“false”
        app:slideMode=“top”
        android:layout_height="match_parent">
    
    ...
    </LinearLayout>
    

    在原有的基础上加入了slideMode
    slideMode 的值为top,bottom,默认为bottom.

    java 的使用与BottomSheetBehavior 一致.
    并添加了3个便捷方法.expand,collapsed,hidden
    并且在代码中解决了上一篇说提到的问题http://www.jianshu.com/p/21bb14e3be94.

    相关文章

      网友评论

        本文标题:SheetBehavior :扩展自BottomSheetBeh

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