CalendarView takes much time for displaying

后端 未结 4 1879
感情败类
感情败类 2021-02-06 14:55

i am working on an application on CalendarView. i have to show calendarView in a small linear-layout.

problem occurs while displaying a whole page which contains calenda

4条回答
  •  灰色年华
    2021-02-06 15:39

    As you mention your problem,

    Issues

    Your resource xml file (layout) not in optimal way. As android guideline don't use static height and weight for ViewGroup. Please read http://developer.android.com/training/improving-layouts/optimizing-layout.html

    Solution :

    In My opinion, you should create your own class for creating Calendar view.In which you apply all the properties and attribute.

    I am show a demo application for the Calender view.http://www.androidviews.net/2013/01/ics-calendarview/ In these application having a better way to use the calendar view. also I am mention some Git URL for the other an custom Calendar view

    • https://github.com/dwivedi/android-times-square
    • https://github.com/dwivedi/ExtendedCalendarView
    • https://github.com/SimonVT/android-calendarview

    In above Application, showing the right way to use CalendarView

    Here I am showing screenshot for the Calenderview application

    enter image description here enter image description here enter image description here

    If any problem, Please Let me know, I will create sample demo for the same.

提交回复
热议问题