thank you for this great video. It helped me a lot! have a nice day :)
@aldrinangue6418 Жыл бұрын
Thank you for sharing this
@송수환-g2d Жыл бұрын
Hi! Thank you very much for this nice video. This really helps a lot. I just wonder is this also possible to put the annual alarm to this app and how to do it. Thanks!
@arjunlagoon2015 Жыл бұрын
How could I make it for multiple users, for example one user creates a calendar and another user could join it, and both can edit and view changes?
@shivanibonagiri21635 ай бұрын
Can you write the code for storing the multiple events on particular dat
@CAJimmyTangJingMing6 ай бұрын
How you make the date change color after you save the data?
@antoniofuller23316 ай бұрын
Any videos about View Model?
@ProgrammerWorld6 ай бұрын
Could you please give more details about View Model or details on your requirement? programmerworld.co
@armeisaahdamaulida7540 Жыл бұрын
Best video! can it be used in kotlin language?
@ProgrammerWorld Жыл бұрын
Yes, any Android app code written in Java can also be implemented using Kotlin language (which is in fact preferred language for App development by Android). Now, you can either re-write the code in Kotlin with overall concept remains same as shown in this video. Or you can simply use the tool as shown in the below to convert the Java code into Kotlin code: programmerworld.co/android/how-to-convert-the-java-code-to-kotlin-for-your-app-in-android-studio/ Hope above helps. Cheers Programmer World programmerworld.co -
@randomingo9712 Жыл бұрын
Hi, what should i do if i want to add a event every 4 hour in a day. Thank you
@ProgrammerWorld Жыл бұрын
In this example I have only considered the date field for setting the events. However, one can enhance it by adding time field as well. The only change required will be that in the Firebase database a time field node will be required to be added (under each date field). For reference, complete source code and details shown in this video is also shared in the below link: programmerworld.co/android/create-your-firebase-realtime-database-calendar-app-to-store-events-or-reminders-android-13-api-33/
@sheirirjtjfot Жыл бұрын
Sir If I'm click save done button Data not save in firebase Screen automatically closed
@ProgrammerWorld Жыл бұрын
Basically the App is crashing on clicking the Save button. In the Save button, below line of code is executed: databaseReference.child(stringDateSelected).setValue(editText.getText().toString()); So, my guess is most likely the databaseReference object is null and hence exception is thrown and App closes. To handle the exception, surround the above line of code within Try-catch block as shown below: try{ databaseReference.child(stringDateSelected).setValue(editText.getText().toString()); } catch(Exception e){ } And then read the value of exception "e" (either in debug mode or print this value in log file). Now, to resolve this issue, check whether this object is properly created or not in the onCreate method of your code. Below line should be checked. databaseReference = FirebaseDatabase.getInstance().getReference("Calendar"); Some of the probable reasons could be that the connection to db is not proper due to network issues or json file not properly placed in the project folder. For reference, details shown in this video is also shared in the below link: programmerworld.co/android/create-your-firebase-realtime-database-calendar-app-to-store-events-or-reminders-android-13-api-33/ Cheers Programmer World programmerworld.co -
@punkacegaming370311 ай бұрын
@@ProgrammerWorld It works in mine, thank you bro.
@jagrutbhole1394 Жыл бұрын
Database showed many error
@ProgrammerWorld Жыл бұрын
Could you copy the errors you are observing? For reference, details shown in this video is also shared in the below link: programmerworld.co/android/create-your-firebase-realtime-database-calendar-app-to-store-events-or-reminders-android-13-api-33/ Cheers Programmer World programmerworld.co -
@deshawn5253 Жыл бұрын
And how to make it so that every day at a certain time from 9 to 12, for example, one code works and at other times another code works or screenshots or activiti are launched
@ProgrammerWorld Жыл бұрын
I think you are looking for alarm kind of service which runs in background process. Any of the below may help in this regards. Please refer: programmerworld.co/android/how-to-create-background-process-in-your-android-app/ programmerworld.co/android/how-to-create-service-class-to-run-a-custom-alarm-clock-in-your-android-complete-source-code/ programmerworld.co/android/create-a-simple-alarm-clock-app-in-android-studio/ Cheers Programmer World programmerworld.co -
@Cha-do7ou Жыл бұрын
DOES NOT WORK!
@ProgrammerWorld Жыл бұрын
What is the error or exception it is throwing? If you could more details of the issue then it may help us in checking it out. By the way the complete source code is available in the below link as well. You may refer it: programmerworld.co/android/create-your-firebase-realtime-database-calendar-app-to-store-events-or-reminders-android-13-api-33/ Cheers Programmer World programmerworld.co -