I would create in my application a weekly calendar, one week, like the school to understand. I would then add the events in the week. To do this I searched the old questions and libraries but could not find what I was looking for. Have you any idea how I can do this?
what I want to create should look like this
thank you
You can use this library for horizontal week view, and on click on each date you can show that days tasks.
Related
So I'm creating a doctor booking app using kotlin and I want to disable weekend and holidays in the calendar view, I couldn't achieve this in the normal calendar view..so can you tell how or give me a resource or something to see
Please first search your answer on google and only ask on stackoverflow if you can't find the answer. You must do some research before posting.
Go to this link:
https://abhiandroid.com/ui/calendarview
My academic project require displaying the current month's calendar with few details like number of visits a user has made on particular day. No other functionality is required like reminder, note, etc. I just need to display the following format. I searched many calendar APIs but unable to find one which serves the purpose. Your help would be highly appreciated.
You can create your own calendar with use of a View pager and GridView . As i can see you need to select multiple days in particular month, you need a a customized one .
Checkout these links with, you'll get an idea about it:
1.Caldroid
2.calendarview
These are some awesome work by the coders you can use this in your project and take the idea of building a calender on your own.Thx.
I want to create a custom calendar in which user can select multiple dates while touching from one start date to another end date in one move.
something like u can see in the image above. How to achieve this? any idea or source please suggest. Thanks in advance !! :)
EDIT: I'm sorry but android CalendarView doesn't support this feature. You can't select multiple dates in it.
Maybe you should look for some kind of third party library to do that.
i have searched a lot to find an example with a calendar ui showing a dayview, so you are able to see a day with its events.
If I understand things right even in android 4.0.3 there is no calendarview which is able to show day views (only monthview).
So I have to use a gridview, don't I?
Has anyone an example or tutorial how to do this?
Many thanks in advance!
I was looking for the same thing, and could find no good options, so I created the yadview project (https://code.google.com/p/yadview). yadview is a fork of the DayView schedule in the AOSP Calendar app, but has been reworked significantly to allow for integration into your application.
Sample screenshot of this View in an activity:
I want to develop a student's timetable for an android application. For this I need to have a calendar to know the day and to check whether the day is a weekday(since saturday and sunday doesnt need a timetable).Can I get the calendar on the phone to do this or do I have to come up with one of my own?
Any help is much appreciated.Thanks.
You can use http://developer.android.com/reference/java/util/Calendar.html. http://developer.android.com/reference/android/text/format/DateUtils.html and http://developer.android.com/reference/android/util/TimeUtils.html are also worth looking into in general.
You can use http://docs.oracle.com/javase/1.5.0/docs/api/java/util/Calendar.html
The java Calender API provide everything that you describe above.