0

我正在尝试PopupWindow用这样的锚(箭头)创建一个:

在此处输入图像描述

我有这样的背景图像popup_bg

在此处输入图像描述

现在我尝试为弹出窗口的布局设置背景:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
                android:layout_width="match_parent"
                android:layout_height="match_parent"
                android:background="@drawable/popup_bg">

    <TextView
        android:id="@+id/popText"
        android:text="@string/map_choose_point"
        android:layout_height="wrap_content"
        android:layout_width="wrap_content"/>
</RelativeLayout>

但我得到了这个:

在此处输入图像描述

如何解决?

4

1 回答 1

2

试试下面的例子

1)超级工具提示

2)橱窗视图

从第一个链接示例如下图所示

在此处输入图像描述

于 2013-11-13T04:52:40.670 回答