-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathNotes.java
More file actions
485 lines (411 loc) · 20.7 KB
/
Notes.java
File metadata and controls
485 lines (411 loc) · 20.7 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
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
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
package com.example.notesapp;
import static com.example.notesapp.Welcome.MESSAGE_KEY;
import androidx.annotation.NonNull;
import androidx.appcompat.app.AlertDialog;
import androidx.appcompat.app.AppCompatActivity;
import androidx.recyclerview.widget.DividerItemDecoration;
import androidx.recyclerview.widget.LinearLayoutManager;
import androidx.recyclerview.widget.RecyclerView;
import android.content.DialogInterface;
import android.content.Intent;
import android.os.Bundle;
import android.view.Menu;
import android.view.MenuItem;
import android.view.View;
import android.widget.EditText;
import android.widget.LinearLayout;
import android.widget.TextView;
import android.widget.Toast;
import com.google.android.gms.tasks.OnCompleteListener;
import com.google.android.gms.tasks.Task;
import com.google.firebase.database.DataSnapshot;
import com.google.firebase.database.DatabaseError;
import com.google.firebase.database.DatabaseReference;
import com.google.firebase.database.FirebaseDatabase;
import com.google.firebase.database.Query;
import com.google.firebase.database.ValueEventListener;
import java.text.SimpleDateFormat;
import java.util.ArrayList;
import java.util.Calendar;
//notes activity
public class Notes extends AppCompatActivity{
//declare variables
private ArrayList<Note> notes;
private RecyclerView recyclerView;
public MyAdapter adapter;
DatabaseReference reference;
String userID;
private MyAdapter.NoteClickListener listener;
private String editNoteKey;
private Note editNote;
private ArrayList<String> notekeys;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_notes);
//get the user id
Intent intent = getIntent();
userID = intent.getStringExtra(MESSAGE_KEY);
//get the recycler view object
recyclerView = (RecyclerView) findViewById(R.id.myrecyclerview);
//do not change the recycler view size
recyclerView.setHasFixedSize(true);
//use a linear layout manager
RecyclerView.LayoutManager layoutManager = new LinearLayoutManager(getApplicationContext());
recyclerView.setLayoutManager(layoutManager);
//create the list
notes = new ArrayList<>();
//call the on click listener method
setOnClickListener();
//specify the adapter
adapter = new MyAdapter(notes, getApplicationContext(), listener);
//set the adapter to the recycler view
recyclerView.setAdapter(adapter);
//add the line to divide the items
recyclerView.addItemDecoration(new DividerItemDecoration(this, LinearLayoutManager.VERTICAL));
//get the database reference to the user's notes
reference = FirebaseDatabase.getInstance().getReference().child("Users").child(userID).child("Notes");
}
//method to add a listener for when a user clicks on a note
private void setOnClickListener() {
notekeys = new ArrayList<>();
DatabaseReference newreference;
newreference = FirebaseDatabase.getInstance().getReference().child("Users").child(userID).child("Notes");
newreference.addListenerForSingleValueEvent(new ValueEventListener() {
@Override
public void onDataChange(@NonNull DataSnapshot snapshot) {
for(DataSnapshot dss : snapshot.getChildren()){
notekeys.add(String.valueOf(dss.getKey()));
}
}
@Override
public void onCancelled(@NonNull DatabaseError error) { }
});
//get the position of the note the user clicks and save the note info
listener = new MyAdapter.NoteClickListener() {
@Override
public void onNoteClick(View v, int position) {
editNoteKey = notekeys.get(position);
editNote = notes.get(position);
}
};
}
//show options menu on top
public boolean onCreateOptionsMenu(Menu menu){
getMenuInflater().inflate(R.menu.main_menu, menu);
return true;
}
//method if any of the option menu items is selected
public boolean onOptionsItemSelected(MenuItem item) {
int id = item.getItemId();
//if the logout option is selected go back to welcome activity
if(id == R.id.logoutoption){
Toast.makeText(Notes.this, "Logged out", Toast.LENGTH_SHORT).show();
Intent intent = new Intent(getApplicationContext(), Welcome.class);
startActivity(intent);
}
//if the edit icon is selected
else if(id == R.id.editnoteoption){
//if the user did not select a note before clicking the edit icon
if(editNote == null){
//create the dialog box
AlertDialog.Builder alertDialog = new AlertDialog.Builder(Notes.this);
alertDialog.setTitle("Error");
//layout for displaying the text fields vertically
LinearLayout layout = new LinearLayout(this);
layout.setOrientation(LinearLayout.VERTICAL);
//create a message textview
TextView message = new TextView(this);
//set the message the information for the user to first select a note
message.setText("You must first click on a note and then the edit icon.");
//add the text fields to the layout
layout.addView(message);
//add the layout to the dialog box
alertDialog.setView(layout);
//create the ok button on the dialog box and add a listener
alertDialog.setNegativeButton("Ok", new DialogInterface.OnClickListener() {
@Override
public void onClick(DialogInterface dialogInterface, int i) {
//display message
Toast.makeText(Notes.this, "Thank You", Toast.LENGTH_SHORT).show();
}
});
//show the dialog box
alertDialog.show();
}
//if the user does select a note and then clicks on the edit icon
else {
//create the dialog box
AlertDialog.Builder alertDialog = new AlertDialog.Builder(Notes.this);
alertDialog.setTitle("Edit note");
alertDialog.setIcon(R.drawable.ic_edit);
//layout for displaying the text fields vertically
LinearLayout layout = new LinearLayout(this);
layout.setOrientation(LinearLayout.VERTICAL);
//create the input text fields
EditText notetitletext = new EditText(this);
EditText notetagtext = new EditText(this);
EditText noteinfotext = new EditText(this);
//set the value of the textfields to the values from the note the user selected
notetitletext.setText(editNote.getTitle());
notetagtext.setText(editNote.getTag());
noteinfotext.setText(editNote.getInfo());
//add the text fields to the layout
layout.addView(notetitletext);
layout.addView(notetagtext);
layout.addView(noteinfotext);
//add the layout to the dialog box
alertDialog.setView(layout);
//create the add button on the dialog box and add a listener
alertDialog.setPositiveButton("Save", new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialogInterface, int i) {
//get the information from the text fields
String notetitle = notetitletext.getText().toString();
String notetag = notetagtext.getText().toString();
String noteinfo = noteinfotext.getText().toString();
//get the current date and time
Calendar calendar;
SimpleDateFormat dateFormat;
calendar = Calendar.getInstance();
//set the current date and time to variables
dateFormat = new SimpleDateFormat("MM/dd/yyyy");
String date = "Date: " + String.valueOf(dateFormat.format(calendar.getTime()));
dateFormat = new SimpleDateFormat("h:mm a");
String time = "Time: " + String.valueOf(dateFormat.format(calendar.getTime()));
//create a note with the new information entered by the user
Note note = new Note(notetitle, noteinfo, notetag, date, time);
//crete a new reference to the database and save all the values
DatabaseReference newreference;
newreference = FirebaseDatabase.getInstance().getReference().child("Users").child(userID).child("Notes").child(editNoteKey);
newreference.child("date").setValue(date);
newreference.child("info").setValue(noteinfo);
newreference.child("tag").setValue(notetag);
newreference.child("time").setValue(time);
newreference.child("title").setValue(notetitle);
editNote = null;
//display message
Toast.makeText(Notes.this, "Updated successfully", Toast.LENGTH_SHORT).show();
}
});
//create the cancel button on the dialog box and add a listener
alertDialog.setNegativeButton("Cancel", new DialogInterface.OnClickListener() {
@Override
public void onClick(DialogInterface dialogInterface, int i) {
//display message
Toast.makeText(Notes.this, "Canceled", Toast.LENGTH_SHORT).show();
}
});
//show the dialog box
alertDialog.show();
}
}
//if the user selects the delete icon
else if(id == R.id.deleteoption){
//if the user does not select a note before clicking the icon
if(editNote == null){
//create the dialog box
AlertDialog.Builder alertDialog = new AlertDialog.Builder(Notes.this);
alertDialog.setTitle("Error");
//layout for displaying the text fields vertically
LinearLayout layout = new LinearLayout(this);
layout.setOrientation(LinearLayout.VERTICAL);
//create a message field informing the user to first select a note
TextView message = new TextView(this);
message.setText("You must first click on a note and then the delete icon.");
//add the text fields to the layout
layout.addView(message);
//add the layout to the dialog box
alertDialog.setView(layout);
//create the ok button on the dialog box and add a listener
alertDialog.setNegativeButton("Ok", new DialogInterface.OnClickListener() {
@Override
public void onClick(DialogInterface dialogInterface, int i) {
//display message
Toast.makeText(Notes.this, "Thank You", Toast.LENGTH_SHORT).show();
}
});
//show the dialog box
alertDialog.show();
}
//if the user does select a note before clicking the icon
else {
//create a new database reference to the key of the note selected
DatabaseReference newreference;
newreference = FirebaseDatabase.getInstance().getReference().child("Users").child(userID).child("Notes").child(editNoteKey);
//remove the note at this key
newreference.addListenerForSingleValueEvent(new ValueEventListener() {
@Override
public void onDataChange(@NonNull DataSnapshot snapshot) {
for (DataSnapshot dss : snapshot.getChildren()){
dss.getRef().removeValue();
}
}
@Override
public void onCancelled(@NonNull DatabaseError error) { }
});
editNote = null;
//display message
Toast.makeText(Notes.this, "Note deleted successfully", Toast.LENGTH_SHORT).show();
}
}
//if the user selects the edit profile option
else if(id == R.id.editprofileoption){
//create the dialog box
AlertDialog.Builder alertDialog = new AlertDialog.Builder(Notes.this);
alertDialog.setTitle("Edit profile");
alertDialog.setIcon(R.drawable.ic_edit);
//layout for displaying the text fields vertically
LinearLayout layout = new LinearLayout(this);
layout.setOrientation(LinearLayout.VERTICAL);
//create the input text fields
EditText username = new EditText(this);
EditText userphone = new EditText(this);
//create a new database reference
DatabaseReference newreference;
newreference = FirebaseDatabase.getInstance().getReference().child("Users");
//get the name of the user
newreference.child(userID).child("name").get().addOnCompleteListener(new OnCompleteListener<DataSnapshot>() {
@Override
public void onComplete(@NonNull Task<DataSnapshot> task) {
if(task.isSuccessful()){
//display the name of the user on the text box
username.setText(String.valueOf(task.getResult().getValue()));
}
else{
//display error
Toast.makeText(Notes.this, "Error", Toast.LENGTH_SHORT).show();
}
}
});
//get the phone number of the user
newreference.child(userID).child("phone").get().addOnCompleteListener(new OnCompleteListener<DataSnapshot>() {
@Override
public void onComplete(@NonNull Task<DataSnapshot> task) {
if(task.isSuccessful()){
//display the phone number of the user on the text box
userphone.setText(String.valueOf(task.getResult().getValue()));
}
else{
//display error
Toast.makeText(Notes.this, "Error", Toast.LENGTH_SHORT).show();
}
}
});
//add the text fields to the layout
layout.addView(username);
layout.addView(userphone);
//add the layout to the dialog box
alertDialog.setView(layout);
//create the save button on the dialog box and add a listener
alertDialog.setPositiveButton("Save", new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialogInterface, int i) {
//get the information from the text fields
String name = username.getText().toString();
String phone = userphone.getText().toString();
//update the values in the database
newreference.child(userID).child("phone").setValue(phone);
newreference.child(userID).child("name").setValue(name);
//display message
Toast.makeText(Notes.this, "User details updated successfully", Toast.LENGTH_SHORT).show();
}
});
//create the cancel button on the dialog box and add a listener
alertDialog.setNegativeButton("Cancel", new DialogInterface.OnClickListener() {
@Override
public void onClick(DialogInterface dialogInterface, int i) {
//display message
Toast.makeText(Notes.this, "Canceled", Toast.LENGTH_SHORT).show();
}
});
//show the dialog box
alertDialog.show();
}
//if the user selects the add note option
else if(id == R.id.addoption){
//create the dialog box
AlertDialog.Builder alertDialog = new AlertDialog.Builder(Notes.this);
alertDialog.setTitle("Add a note");
alertDialog.setIcon(R.drawable.ic_add);
//layout for displaying the text fields vertically
LinearLayout layout = new LinearLayout(this);
layout.setOrientation(LinearLayout.VERTICAL);
//create the input text fields
EditText notetitle = new EditText(this);
EditText notetag = new EditText(this);
EditText noteinfo = new EditText(this);
//add hints to the text fields
notetitle.setHint("Title");
notetag.setHint("tag");
noteinfo.setHint("Contents");
//add the text fields to the layout
layout.addView(notetitle);
layout.addView(notetag);
layout.addView(noteinfo);
//add the layout to the dialog box
alertDialog.setView(layout);
//create the add button on the dialog box and add a listener
alertDialog.setPositiveButton("Add", new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialogInterface, int i) {
//get the information from the text fields
String title = "Title: " + notetitle.getText().toString();
String tag = "Tag: " + notetag.getText().toString();
String info = "Contents: " + noteinfo.getText().toString();
//if everything is completed
//get the current date and time
Calendar calendar;
SimpleDateFormat dateFormat;
calendar = Calendar.getInstance();
//set the current date and time to the variables
dateFormat = new SimpleDateFormat("MM/dd/yyyy");
String date = "Date: " + String.valueOf(dateFormat.format(calendar.getTime()));
dateFormat = new SimpleDateFormat("h:mm a");
String time = "Time: " + String.valueOf(dateFormat.format(calendar.getTime()));
//generate an id to the note
String id = reference.push().getKey();
//create a new note with the information provided
Note note = new Note(title, info, tag, date, time);
//add the note to the database
reference.child(id).setValue(note);
}
});
//create the cancel button on the dialog box and add a listener
alertDialog.setNegativeButton("Cancel", new DialogInterface.OnClickListener() {
@Override
public void onClick(DialogInterface dialogInterface, int i) {
//display message
Toast.makeText(Notes.this, "Canceled", Toast.LENGTH_SHORT).show();
}
});
//show the dialog box
alertDialog.show();
}
return true;
}
//on start method
@Override
protected void onStart() {
super.onStart();
//create new database reference
Query query = FirebaseDatabase.getInstance().getReference().child("Users").child(userID).child("Notes");
//get the values from the database and add it to the arraylist
query.addValueEventListener(new ValueEventListener() {
@Override
public void onDataChange(@NonNull DataSnapshot snapshot) {
notes.clear();
//snapshots are the data from the database - if there is data in the database
if(snapshot.exists()){
for(DataSnapshot dss: snapshot.getChildren()){
//create a note with the information
Note note = dss.getValue(Note.class);
//add the note to the arraylist
notes.add(note);
}
//notify that the data has changed
adapter.notifyDataSetChanged();
}
}
@Override
public void onCancelled(@NonNull DatabaseError error) { }
});
}
}