0

我有一个弹出窗口显示在我的 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 中执行此操作。请帮忙

4

2 回答 2

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>
于 2013-07-02T11:33:40.553 回答
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>

于 2014-07-22T09:57:11.860 回答