放图
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.