我有一个弹出窗口显示在我的 xml 中。它应该有一个边框。以下是代码:-
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/rl_parent"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:paddingBottom="20dp" >
<RelativeLayout
android:id="@+id/rl_startpopup"
android:layout_width="340dp"
android:layout_height="320dp"
android:layout_marginLeft="10dp"
android:layout_marginRight="10dp"
android:background="@drawable/popup_outline"
android:orientation="vertical" />
</RelativeLayout>
popup_outline 是一个形状
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle" >
<gradient
android:angle="270"
android:endColor="#192423"
android:startColor="#4a7669"
android:type="linear" />
<corners android:radius="8dp" />
<stroke
android:width="2dp"
android:color="#e4f4d3" />
</shape>
这是弹出窗口的图像:-
这个“popup_outline”是显示的白色边框。我想使用可重复的图案图像而不是一种颜色作为边框。我必须在 xml 中执行此操作。请帮忙