lmw
2024-09-25 92778728b83ce1a34ba21bcdb061afdeca16cce5
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
<?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>