我有一个弹出窗口显示在我的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中执行此操作。请帮忙
答案 0 :(得分:0)
您可以使用FrameLayout显示边框,而FrameLayout内部使用ImageView或RelativeLayout来显示其他内容。
实施例: -
<FrameLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@drawable/IMAGE_OF_YOUR_CHOICE_WITH_repeatable pattern"
>
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
></RelativeLayout>
</FrameLayout>
答案 1 :(得分:0)
您可以使用任何布局来使用边框和布局内部,您可以自由使用任何视图或布局,例如TextView,ImageView
实施例: -
<RelativeLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@drawable/popupbox"
android:padding="50dp">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Your Garage is empty" />
</RelativeLayout>