-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfragment_report.xml
63 lines (57 loc) · 2.54 KB
/
fragment_report.xml
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
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
tools:context="info.androidhive.materialdesign.activity.ReportFragment">
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:textAppearance="?android:attr/textAppearanceLarge"
android:text="For any queries,suggetios or help...you can report here!!!!"
android:id="@+id/textView42"
android:layout_alignParentTop="true"
android:layout_alignParentRight="true"
android:layout_alignParentEnd="true" />
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textAppearance="?android:attr/textAppearanceLarge"
android:text="Type your query or problem below..... "
android:id="@+id/textView43"
android:layout_below="@+id/textView42"
android:layout_alignLeft="@+id/textView42"
android:layout_alignStart="@+id/textView42"
android:layout_marginTop="79dp" />
<EditText
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:inputType="textEmailAddress"
android:ems="10"
android:id="@+id/editText4"
android:layout_below="@+id/textView43"
android:layout_marginTop="55dp"
android:layout_alignRight="@+id/textView43"
android:layout_alignEnd="@+id/textView43"
android:layout_alignParentLeft="true"
android:layout_alignParentStart="true" />
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="SUBMIT"
android:id="@+id/button4"
android:layout_alignParentBottom="true"
android:layout_centerHorizontal="true"
android:layout_marginBottom="69dp" />
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textAppearance="?android:attr/textAppearanceLarge"
android:text="we are available 24/7 for you."
android:id="@+id/textView44"
android:layout_below="@+id/textView42"
android:layout_alignParentLeft="true"
android:layout_alignParentStart="true"
android:layout_alignRight="@+id/textView43"
android:layout_alignEnd="@+id/textView43" />
</RelativeLayout>