gpt4 book ai didi

android - 自定义上下文菜单,如 pinterest 菜单

转载 作者:塔克拉玛干 更新时间:2023-11-02 19:04:09 25 4
gpt4 key购买 nike

每当按下 GridView 中的项目时,我一直在寻找类似 Pinterest 菜单的东西。我知道这个问题太宽泛了。但对问题的小罢工将提供实现这些目标的正确方法。

问题:

如何在 GridView 项上实现自定义上下文菜单,如 Contacts+ 或 Pinterest 上下文菜单?

Pinterest Context Menu Contacts+ Context Menu

尝试过:

ArcMenu :但它们是整个应用程序的 slider 菜单或弹出菜单的替代品。 我想要可以为 GridView 项创建 onFly 的菜单。

Satellite Menu : 与 ArcMenu 相同,为整个应用程序替换 Slider Menu 或 Pop up Menu。

请启发我实现这些行为。

最佳答案

我认为您可以根据需要使用 PopupWindow 而不是 Context Menu

 //Custom popup view
View view= layoutInflater.inflate(R.layout.popupview, null);
PopupWindow popupWindow = new PopupWindow(
view,
LayoutParams.WRAP_CONTENT,
LayoutParams.WRAP_CONTENT);

//Display popup window on clicking anything
//Displays pop up window near button with offsets 10 and -10
popupWindow.showAsDropDown(button, 10, -10);

获取更多信息

http://developer.android.com/reference/android/widget/PopupWindow.html

http://android-er.blogspot.in/2012/03/example-of-using-popupwindow.html

关于android - 自定义上下文菜单,如 pinterest 菜单,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23718427/

25 4 0