gpt4 book ai didi

带有工具提示箭头的 Android PopupWindow

转载 作者:IT王子 更新时间:2023-10-28 23:45:54 25 4
gpt4 key购买 nike

我已经看到很多关于通过将 null 或 new Drawable() 传递给 setBackgroundDrawable() 来移除 PopupWindow 边框的问题。我遇到了相反的问题。我想要在我的 PopupWindow 周围有一个边框,最好有一个指向我的 anchor 的工具提示箭头。目前,我的 PopupWindow 没有边框。我尝试调整边距、xml 中的背景、布局的宽度和高度、 ListView 和 ListView 行,但无济于事。有人可以帮我在顶部获得边框和图像吗?我正在尝试使用 android SDK。

popup_menu_list.xml

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="vertical" >

<com.github.jeremiemartinez.refreshlistview.RefreshListView
android:id="@+id/popup_menu_list_listview"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@color/color_white" />

</LinearLayout>

Java

private void displayPopupMenu() {
LayoutInflater layoutInflater = getLayoutInflater();
View popupView = layoutInflater.inflate(R.layout.popup_menu_list, null);
final PopupWindow popupWindow = new PopupWindow(popupView, LayoutParams.WRAP_CONTENT, LayoutParams.WRAP_CONTENT);
RefreshListView myListView = (RefreshListView) popupView.findViewById(R.id.popup_menu_list_listview);
mAdapter = new myAdapter(this, getAdapterData());
myListView.setAdapter(mAdapter);
popupWindow.showAsDropDown(mMyAnchor);
}

我只是将这些作为示例,但我想要这样的东西,弹出窗口指向 anchor :

enter image description here

但是我得到了这样的东西:

enter image description here

最佳答案

Market 中有许多可用的库和代码。链接如下:

这是 QuickAction UI 模式。看看:

  1. QuickAction-Dialog

  2. Quick-action-pattern-in-Android

  3. Chrome Style Help Popups

另一种选择是“ super 工具提示”:

https://github.com/nhaarman/supertooltips

这是一个演示:

https://play.google.com/store/apps/details?id=com.haarman.supertooltips

从第一个链接/示例如下图所示。这些只是演示,但您可以根据需要进行自定义。

enter image description here

关于带有工具提示箭头的 Android PopupWindow,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21031488/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com