cloudroam
2025-02-21 6b335e64a7e58a37296e50e7e1acc42680ea9e44
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<?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="wrap_content"
    android:orientation="vertical"
    android:padding="16dp">
 
    <EditText
        android:id="@+id/feedback_edit_text"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:minHeight="120dp"
        android:gravity="top"
        android:hint="请输入您的意见或建议"
        android:padding="8dp"
        android:background="@android:drawable/edit_text" />
 
</LinearLayout>