0

我有一个带有多行文本的 EditText 框。我想将一些线条设置为背景颜色蓝色。我想将 EditText 框的整个宽度设置为蓝色,而不仅仅是文本的背景。

请帮忙!

(我知道我可以通过使用 Span 类将文本的背景设置为蓝色,但想在整个行的宽度上设置蓝色 - 即使文本只存在到行的中间)

4

1 回答 1

0

您可以使用以下 xml 布局自定义编辑文本

将以下代码另存为yourWishName.xml

<?xml version="1.0" encoding="UTF-8"?>
<selector
xmlns:android="http://schemas.android.com/apk/res/android">

//You can change the color of the edit text here which removes the border line as well
 <item android:state_focused="true" >
    <shape android:shape="rectangle">
        <gradient
            android:startColor="#FFFFFF"
            android:endColor="#FFFFFF"
            android:angle="270" />
        <stroke
            android:width="3dp"
            android:color="#F8B334" />
        <corners
            android:radius="12dp" /> 
    </shape>
</item>  
<item>
    <shape android:shape="rectangle">
        <gradient
            android:startColor="#FFFFFF"
            android:endColor="#FFFFFF"
            android:angle="270" />
        <stroke
            android:width="0dp"
            android:color="#000000" />
        <corners
            android:radius="12dp" /> 
    </shape>
</item>
</selector>

在 EditText 中调用 xmlandroid:background="@drawable/yourWishName"

希望这可以帮助

于 2013-01-08T17:09:21.300 回答