android 上的自定义 editText

Custom editText on android

我是 android 布局的新手,所以我需要一些帮助。

我想创建一个自定义的 editText,像这样:

我想用最好的方法解决这个问题。

有人吗?

谢谢。

您可以创建一个 Shape 可绘制对象并将形状可绘制对象设置为 EditText 背景

如果想要左边的蓝线,只需要在EditText上设置背景即可,比如,

    <EditText
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        android:layout_marginLeft="10dp"
        android:background="@drawable/custom_edittext"
        android:layout_weight="1" />

然后在您的可绘制文件夹中创建另一个名为 custom_layer.xml

的文件
   <?xml version="1.0" encoding="utf-8"?>
   <layer-list xmlns:android="http://schemas.android.com/apk/res/android" >
    <item
        android:bottom="-5dp"
        android:right="-5dp"
        android:top="-5dp">
        <shape android:shape="rectangle" >
            <solid android:color="@color/color_of_the_background" />
            <stroke
                android:width="5dp"
                android:color="@color/color_of_the_border" />
        </shape>
    </item>
</layer-list>

以及最终的选择器文件 - custom_edittext.xm

<selector
    xmlns:android="http://schemas.android.com/apk/res/android">
    <item android:drawable="@drawable/custom_layer">        
    </item>
</selector>