-
Notifications
You must be signed in to change notification settings - Fork 0
/
activity_chatbox.xml
144 lines (128 loc) · 5.75 KB
/
activity_chatbox.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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
<!--<?xml version="1.0" encoding="utf-8"?>-->
<!--<RelativeLayout-->
<!--xmlns:android="http://schemas.android.com/apk/res/android"-->
<!--xmlns:app="http://schemas.android.com/apk/res-auto"-->
<!--xmlns:tools="http://schemas.android.com/tools"-->
<!--android:layout_width="match_parent"-->
<!--android:layout_height="match_parent"-->
<!--tools:context="com.example.travelin.Chatbox">-->
<!--<android.support.v7.widget.RecyclerView-->
<!--android:id="@+id/recyclerView"-->
<!--android:layout_width="match_parent"-->
<!--android:layout_height="match_parent"-->
<!--android:paddingTop="10dp"-->
<!--android:paddingBottom="50dp"-->
<!--android:clipToPadding="false"-->
<!--android:background="#f4f6f7"-->
<!--/>-->
<!--<RelativeLayout-->
<!--android:layout_width="match_parent"-->
<!--android:layout_height="wrap_content"-->
<!--android:layout_alignParentBottom="true">-->
<!--<RelativeLayout-->
<!--android:layout_width="match_parent"-->
<!--android:layout_height="wrap_content"-->
<!--android:layout_marginStart="10dp"-->
<!--android:layout_marginEnd="5dp"-->
<!--android:layout_marginBottom="10dp"-->
<!--android:elevation="2dp"-->
<!--android:background="@drawable/back_addtask"-->
<!--android:layout_toStartOf="@+id/addBtn"-->
<!--android:layout_centerVertical="true"-->
<!-->-->
<!--<EditText-->
<!--android:id="@+id/editText"-->
<!--android:layout_width="match_parent"-->
<!--android:layout_height="wrap_content"-->
<!--android:minHeight="50dp"-->
<!--android:layout_marginStart="20dp"-->
<!--android:layout_marginEnd="20dp"-->
<!--android:background="#fff"-->
<!--android:hint="Type a Message"-->
<!--android:textSize="18sp"/>-->
<!--</RelativeLayout>-->
<!--<RelativeLayout-->
<!--android:id="@+id/addBtn"-->
<!--android:layout_width="50dp"-->
<!--android:layout_height="50dp"-->
<!--android:layout_alignParentEnd="true"-->
<!--android:background="@drawable/back_fab"-->
<!--android:layout_marginBottom="10dp"-->
<!--android:layout_marginEnd="5dp"-->
<!--android:elevation="4dp"-->
<!--android:layout_centerInParent="true"-->
<!-->-->
<!--<ImageView-->
<!--android:id="@+id/fab_img"-->
<!--android:layout_width="25dp"-->
<!--android:layout_height="25dp"-->
<!--android:layout_centerInParent="true"-->
<!--android:src="@drawable/ic_send_white_24dp"-->
<!--android:tint="#fff"/>-->
<!--</RelativeLayout>-->
<!--</RelativeLayout>-->
<!--</RelativeLayout>-->
<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".CommentsActivity">
<android.support.v7.widget.Toolbar
android:id="@+id/comment_toolbar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@color/colorPrimary"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"></android.support.v7.widget.Toolbar>
<TextView
android:id="@+id/comment_label"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginStart="24dp"
android:layout_marginTop="24dp"
android:text="Comments : "
android:textSize="18sp"
android:textStyle="bold"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/comment_toolbar" />
<EditText
android:id="@+id/comment_field"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_marginStart="16dp"
android:layout_marginEnd="16dp"
android:layout_marginBottom="16dp"
android:ems="10"
android:hint="Your Comment here ..."
android:inputType="textMultiLine"
android:padding="12dp"
android:textSize="16sp"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toStartOf="@+id/comment_post_btn"
app:layout_constraintStart_toStartOf="parent" />
<ImageView
android:id="@+id/comment_post_btn"
android:layout_width="48dp"
android:layout_height="48dp"
android:layout_marginEnd="16dp"
android:layout_marginBottom="16dp"
android:padding="8dp"
android:src="@drawable/profile_placeholder"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent" />
<android.support.v7.widget.RecyclerView
android:id="@+id/comment_list"
android:layout_width="0dp"
android:layout_height="0dp"
android:layout_marginStart="16dp"
android:layout_marginTop="16dp"
android:layout_marginEnd="16dp"
android:layout_marginBottom="16dp"
app:layout_constraintBottom_toTopOf="@+id/comment_field"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/comment_label" />
</android.support.constraint.ConstraintLayout>