EditText编辑框

Posted perzhu

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了EditText编辑框相关的知识,希望对你有一定的参考价值。

技术图片

 

 

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical"
    android:padding="10dp">

    <TextView
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:text="姓名:"
        android:textSize="28sp"
        android:textColor="#000000"
        />

    <EditText
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:hint="请输入姓名"
        android:maxLines="2"
        android:textColor="#000000"
        android:textSize="20sp"

        />

    <!--<&lt;!&ndash;TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Hello World!"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintLeft_toLeftOf="parent"
        app:layout_constraintRight_toRightOf="parent"
        app:layout_constraintTop_toTopOf="parent" />&ndash;&gt;-->


</LinearLayout>

 

以上是关于EditText编辑框的主要内容,如果未能解决你的问题,请参考以下文章

使用颜色选择器更改片段中edittext的背景颜色

Android 编辑框(EditText)属性学习

EditText编辑框

Android 编辑框(EditText)属性学习

备份Edittext编辑框字数限制ui以及逻辑

EditText表现得很奇怪