我正在尝试使用这样的锚点(箭头)创建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>
但我得到了这个:
如何解决?