3

我们可以shape用来创建一个简单的边框,例如我在这里看到了这段代码:

<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
    <item>
        <shape android:shape="rectangle">
            <corners android:radius="5dip" />
            <solid android:color="@color/black" />
            <stroke android:width="2dip" android:color="@color/white" />
        </shape>
    </item>
</layer-list>

但我需要一个标题如下图的边框:

在此处输入图像描述

我怎么能这样做?

4

2 回答 2

0

现在我在这里找到了一个可以帮助我的好代码。我在这里添加代码:

<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent" 
android:color="#000000">
<View
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:background="@drawable/rectangle"
    android:layout_margin="20dp"
    />
<RelativeLayout
    android:layout_width="fill_parent"
    android:layout_height="fill_parent">
    <TextView 
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_centerHorizontal="true"
        android:background="#000000"
        android:layout_marginTop="10dp"
        android:text="TITLE!"
        android:textColor="#ffffff"/>
</RelativeLayout>

@drawable/rectangle 位于一个可绘制的 rectangle.xml 文件中,如下所示:

<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android" 
    android:shape="rectangle">
<solid android:color="@android:color/transparent"/>
<stroke  android:width="2dip" android:color="#ffffff"/>  
</shape>
于 2013-02-25T07:35:37.500 回答
-1

尝试以下代码并在应用程序的res/drawable文件夹中创建 xml 文件并粘贴以下代码:

 <?xml version="1.0" encoding="utf-8"?>
  <shape xmlns:android="http://schemas.android.com/apk/res/android"
    android:shape="rectangle" >
<corners android:radius="3dp" />
<solid android:color="#00000000" />
<stroke
    android:width="2dp"
    android:color="#1B455F" />
  <padding android:left="5dp"
    android:top="5dp"
    android:right="5dp"
    android:bottom="5dp"/>
</shape>

您可以根据自己的方便通过更改描边颜色来更改边框颜色。

使用上面的 xml 如下: 这里我尝试在 TextView 上设置边框。

<TextView
    android:id="@+id/textView1"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:background="@drawable/border"
    android:text="@string/hello_world" />

我希望它会帮助你。

谢谢。

于 2013-02-25T05:35:57.220 回答