从溢出按钮中分离菜单项列表

时间:2017-02-07 01:47:41

标签: android

我有一个带有溢出菜单按钮工具栏的cardviews列表。我想单独显示菜单列表并在屏幕底部显示,但它显示在覆盖溢出菜单的工具栏上。见图片。

目标:https://i.stack.imgur.com/nDZFR.png

目前:https://i.stack.imgur.com/PF1fs.jpg

如何从工具栏中分离菜单项并在溢出菜单上单击底部显示?请帮忙。谢谢。干杯!

1 个答案:

答案 0 :(得分:2)

不使用带工具栏的菜单项,而是使用onClickListener添加溢出图像。

<ImageButton
    android:layout_width="wrap_content" 
    android:layout_height="wrap_content" 
    android:src="@drawable/ic_overflow_holo_dark"
    android:contentDescription="@string/descr_overflow_button"
    android:onClick="showPopup" />

&安培;您可以使用此库来显示项目

https://github.com/soarcn/BottomSheet

Android Bottom/Footer Menu Example with SlideUp Animation