7

如何在 android.xml 中删除 Edittext 字段的边框。实际上它看起来像这样

http://pbrd.co/V34sN7

使用此布局代码

    <EditText
        android:id="@+id/login_error"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:text=""
        android:background="@android:drawable/editbox_background_normal"
        android:visibility="invisible" 
        android:textColor="#FF0000"
        android:layout_gravity="right"
        />

尽管我定义了它,但文本的对齐方式也不在右侧。

谢谢

4

4 回答 4

16

简单地说,您可以在xml文件中使用以下内容来使EditText背景清晰:

android:background="@null"
于 2015-03-25T07:24:18.127 回答
6

程序化方法:

setBackgroundDrawable(null);

或者,由于 setBackgroundDrawable() 在 API 16 中已被弃用:

if (Build.VERSION.SDK_INT >= 16)
    setBackground(null);
else
    setBackgroundDrawable(null);
于 2014-02-17T06:58:33.223 回答
5

您可以EditText使用以下 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"

右对齐使用android:gravity="right"

希望这可以帮助

于 2013-01-07T15:54:07.207 回答
3

您必须创建一个没有边框的自定义可绘制九个补丁文件。在这里你可以找到一个教程android:layout_gravity="right"不是意味着文本向右对齐。它将布局向右对齐。你必须使用android:gravity="right".

于 2013-01-07T15:53:02.223 回答