Im first time work with UI. I know about customising standart things (list, table or something other). I need to do as in the example below. Calendar view. Who know tutorials/samples like that ? Sorry, but i never works with UI in android SDK.
-
2You could look at [designing the view for a calendar app](http://stackoverflow.com/questions/33912473/android-designing-the-view-for-a-calendar-app/33923513#33923513) for a full sample of a given day and go from there – David Medenjak Mar 04 '16 at 21:03
2 Answers
Quoting from CalendarView
CalendarView class is a calendar widget for displaying and selecting dates. The range of dates supported by this calendar is configurable. A user can select a date by taping on it and can scroll and fling the calendar to a desired date.
Android does not offer any calendar view in the SDK. That is a big loss from the developer’s point of view. There are lots of situations where it would be beneficial to display days of a month and provide some option for the user to choose the day.
- One solution is to use a 3rd Party Component.
- The second one is to implement one by your own .
Courtesy goes to How to implement CalendarView in Android .
Please check
Hope this helps you .

- 1
- 1

- 74,896
- 15
- 165
- 198
Checkout this library, material-calendarview.
Have a look around the way they implemented the calendar and maybe you could customize it for your own design.

- 15,698
- 9
- 48
- 66