lmw
2023-05-12 f67802a41f9e01444d1115f34ecc6e1beb05fc3b
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
34
35
36
37
38
39
40
41
<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:focusable="true"
    android:focusableInTouchMode="true"
    android:background="@color/page_bg">
    <EditText
        android:layout_width="match_parent"
        android:layout_height="260dp"
        android:background="@drawable/bg_white_6dp"
        android:layout_margin="12dp"
        app:layout_constraintTop_toTopOf="parent"
        android:id="@+id/et_content"
        android:hint="我们的进步离不开您的每一个建议与创意,期待你的心声!"
        android:gravity="top"
        android:maxLength="200"
        android:padding="11dp"
        style="@style/style_common_text"/>
    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        app:layout_constraintEnd_toEndOf="@id/et_content"
        app:layout_constraintBottom_toBottomOf="@id/et_content"
        android:text="还可以输入200字"
        android:layout_marginEnd="15dp"
        android:layout_marginBottom="13dp"
        android:textSize="14sp"
        android:textColor="@color/textColor99"
        android:id="@+id/tv_count"/>
    <TextView
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:id="@+id/tv_action"
        app:layout_constraintBottom_toBottomOf="parent"
        style="@style/style_tv_action"
        android:visibility="gone"
        android:layout_marginBottom="15dp"
        android:text="提交"/>
</androidx.constraintlayout.widget.ConstraintLayout>