-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfragment_sell.xml
62 lines (55 loc) · 2.38 KB
/
fragment_sell.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
<?xml version="1.0" encoding="utf-8"?>
<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.support.design.widget.TextInputLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentStart="true"
android:layout_alignParentTop="true"
android:layout_marginStart="30dp"
android:layout_marginTop="0dp">
<android.support.design.widget.TextInputEditText
android:layout_width="306dp"
android:layout_height="wrap_content"
android:layout_alignTop="@+id/null"
android:hint="hint"
android:text="Post Tile" />
</android.support.design.widget.TextInputLayout>
<android.support.design.widget.TextInputLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentStart="true"
android:layout_alignParentTop="true"
android:layout_alignParentEnd="true"
android:layout_marginStart="28dp"
android:layout_marginTop="75dp"
android:layout_marginEnd="5dp">
<android.support.design.widget.TextInputEditText
android:layout_width="312dp"
android:layout_height="match_parent"
android:layout_alignTop="@+id/null"
android:hint="hint"
android:text="Description" />
</android.support.design.widget.TextInputLayout>
<Button
android:id="@+id/uploadButton"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignBottom="@+id/textViewSell"
android:layout_alignParentStart="true"
android:layout_alignParentTop="true"
android:layout_alignParentEnd="true"
android:layout_marginStart="32dp"
android:layout_marginTop="159dp"
android:layout_marginEnd="227dp"
android:layout_marginBottom="7dp"
android:text="Upload Image" />
<TextView
android:id="@+id/image"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_above="@+id/textViewSell"
android:layout_marginBottom="-182dp"
android:layout_toEndOf="@+id/textViewSell" />
</RelativeLayout>