我正在尝试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>
但我得到了这个:
如何解决?