47
47
import com .google .firebase .database .Query ;
48
48
49
49
public class ChatActivity extends AppCompatActivity implements FirebaseAuth .AuthStateListener {
50
-
51
- public static final String TAG = "RecyclerViewDemo" ;
50
+ private static final String TAG = "RecyclerViewDemo" ;
52
51
53
52
private FirebaseAuth mAuth ;
54
- private DatabaseReference mRef ;
55
53
private DatabaseReference mChatRef ;
56
54
private Button mSendButton ;
57
55
private EditText mMessageEdit ;
@@ -71,8 +69,7 @@ protected void onCreate(Bundle savedInstanceState) {
71
69
mSendButton = (Button ) findViewById (R .id .sendButton );
72
70
mMessageEdit = (EditText ) findViewById (R .id .messageEdit );
73
71
74
- mRef = FirebaseDatabase .getInstance ().getReference ();
75
- mChatRef = mRef .child ("chats" );
72
+ mChatRef = FirebaseDatabase .getInstance ().getReference ().child ("chats" );
76
73
77
74
mSendButton .setOnClickListener (new View .OnClickListener () {
78
75
@ Override
@@ -146,7 +143,7 @@ private void attachRecyclerViewAdapter() {
146
143
@ Override
147
144
public void populateViewHolder (ChatHolder chatView , Chat chat , int position ) {
148
145
chatView .setName (chat .getName ());
149
- chatView .setText (chat .getText ());
146
+ chatView .setText (chat .getMessage ());
150
147
151
148
FirebaseUser currentUser = mAuth .getCurrentUser ();
152
149
if (currentUser != null && chat .getUid ().equals (currentUser .getUid ())) {
@@ -188,7 +185,7 @@ public void onComplete(@NonNull Task<AuthResult> task) {
188
185
}
189
186
190
187
public boolean isSignedIn () {
191
- return ( mAuth .getCurrentUser () != null ) ;
188
+ return mAuth .getCurrentUser () != null ;
192
189
}
193
190
194
191
public void updateUI () {
@@ -198,30 +195,42 @@ public void updateUI() {
198
195
}
199
196
200
197
public static class Chat {
201
-
202
- String name ;
203
- String text ;
204
- String uid ;
198
+ private String mName ;
199
+ private String mMessage ;
200
+ private String mUid ;
205
201
206
202
public Chat () {
203
+ // Needed for Firebase
207
204
}
208
205
209
- public Chat (String name , String uid , String message ) {
210
- this . name = name ;
211
- this . text = message ;
212
- this . uid = uid ;
206
+ public Chat (String name , String message , String uid ) {
207
+ mName = name ;
208
+ mMessage = message ;
209
+ mUid = uid ;
213
210
}
214
211
215
212
public String getName () {
216
- return name ;
213
+ return mName ;
214
+ }
215
+
216
+ public void setName (String name ) {
217
+ mName = name ;
218
+ }
219
+
220
+ public String getMessage () {
221
+ return mMessage ;
222
+ }
223
+
224
+ public void setMessage (String message ) {
225
+ mMessage = message ;
217
226
}
218
227
219
228
public String getUid () {
220
- return uid ;
229
+ return mUid ;
221
230
}
222
231
223
- public String getText ( ) {
224
- return text ;
232
+ public void setUid ( String uid ) {
233
+ mUid = uid ;
225
234
}
226
235
}
227
236
0 commit comments