如何在android中创建一个带有2面的矩形形状

时间:2012-12-28 13:53:21

标签: android

我想显示带有两面的编辑文本框。所以,为此,我需要创建一个两边的矩形形状。请帮助一些人。

2 个答案:

答案 0 :(得分:3)

在drawable文件夹下创建一个drawable并添加belwow内容(border.xml:

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

现在将EditText的背景设置为此绘图,如:

 android:background="@drawable/border"

答案 1 :(得分:0)

我认为最好的方法是在PhotoShop中创建一个带有所需边框的9补丁......还有其他几种方式......取决于你的设计。