自EDITTEXT在Android(Custom editText on android)

2019-10-23 10:33发布

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

我想创建一个自定义EDITTEXT,是这样的:

我想解决这个问题最好的可能的方式。

有人?

谢谢。

Answer 1:

如果你想在左边的蓝线,你可以只设置上的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>


Answer 2:

U可以创建一个形状绘制,并设置可拉伸的形状作为背景的EditText



文章来源: Custom editText on android