在Android中,我想制作像THIS 这样的滑动菜单现在我想让这个滑动菜单相同,但菜单按钮必须位于底部。菜单从下到上打开我怎么能实现这个目标?
I have tried this 和This also但我没有得到有用的输出我想要与第一个屏幕截图相同但菜单在底部并且它扩展到一定高度(菜单不能覆盖整个高度)
我希望它使用片段。
我试过这个also
我希望它像THIS
答案 0 :(得分:4)
我已将该链接发布为答案:https://github.com/umano/AndroidSlidingUpPanel
图书馆将帮助您实现所需。
Umano Android应用程序的2.2版本为当前正在播放的文章提供了一个性感的向上滑动的可拖动面板。此类面板是Google音乐应用和Rdio应用中常用的模式。这是此组件的开源实现,您可以在应用程序中自由利用。 Umano团队开源。
<com.sothree.slidinguppaneldemo.SlidingUpPanelLayout
android:id="@+id/sliding_layout"
android:layout_width="match_parent"
android:layout_height="match_parent" >
<TextView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:gravity="center"
android:text="Main Content"
android:textSize="16sp" />
<TextView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:gravity="center|top"
android:text="The Awesome Sliding Up Panel"
android:textSize="16sp" />
</com.sothree.slidinguppaneldemo.SlidingUpPanelLayout>