<?xml version="1.0" encoding="utf-8"?>
|
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content">
|
<androidx.constraintlayout.widget.ConstraintLayout
|
android:layout_width="match_parent"
|
app:layout_constraintTop_toTopOf="parent"
|
android:paddingVertical="10dp"
|
android:paddingHorizontal="14dp"
|
android:background="@color/white"
|
android:layout_height="wrap_content">
|
|
<EditText
|
android:layout_width="match_parent"
|
android:layout_height="100dp"
|
android:id="@+id/et_content"
|
android:textSize="14sp"
|
app:layout_constraintTop_toTopOf="parent"
|
android:background="@drawable/bg_grey_line_4dp"
|
android:textStyle="bold"
|
android:imeOptions="actionSend"
|
android:gravity="top"
|
android:paddingHorizontal="4dp"
|
android:paddingVertical="6dp"
|
android:maxLength="10"
|
android:inputType="text"
|
android:singleLine="true"
|
android:hint="请输入"/>
|
|
</androidx.constraintlayout.widget.ConstraintLayout>
|
|
</androidx.constraintlayout.widget.ConstraintLayout>
|