user_feedback.xml
2.11 KB
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
<?xml version="1.0" encoding="utf-8"?>
<layout xmlns:android="http://schemas.android.com/apk/res/android"
>
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent">
<LinearLayout
android:orientation="vertical" android:layout_width="match_parent"
android:layout_height="wrap_content">
<include layout="@layout/user_toolbar_title"
android:id="@+id/feedbackIncludeLayout"/>
<include layout="@layout/user_divider_head_line" />
<View
android:layout_width="match_parent"
android:layout_height="@dimen/_20px" />
<EditText
android:id="@+id/feedback_textView"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:paddingTop="@dimen/_20px"
android:paddingBottom="@dimen/_20px"
android:layout_centerVertical="true"
android:layout_marginLeft="@dimen/_30px"
android:background="@null"
android:hint="有什么好的建议嘛"
android:textColor="#000000"
android:textColorHint="@color/color_list_bg"
android:textSize="@dimen/text_size_15"
android:imeOptions="flagNoExtractUi" />
<View
android:layout_width="match_parent"
android:layout_height="@dimen/_100px" />
<Button
android:id="@+id/feedback"
style="@style/LoginButtonStyle"
android:layout_width="match_parent"
android:layout_height="35dp"
android:layout_gravity="center"
android:layout_centerHorizontal="true"
android:layout_marginBottom="15dp"
android:layout_alignParentBottom="true"
android:background="@drawable/user_btn_login"
android:gravity="center"
android:onClick="onClick"
android:text="提交" />
</LinearLayout>
<ImageView
android:id="@+id/back_selector"
android:layout_width="30dp"
android:layout_height="30dp"
android:layout_marginLeft="@dimen/_10px"
android:layout_marginTop="@dimen/_20px"
android:onClick="onClick"
android:src="@drawable/btn_return" />
</RelativeLayout>
</layout>