Hi,

I have been developing a simple app for events management. As a calendar to 
show the events I chose ExtendedCalendarView but the problem I describe 
below I faced with native Calendar View too.

The problem is that after I have put into the activity layout the code 
below, it only show the top of the calendar - it means, something like that:

<< MARCH >>
Mo Tue Wed Thu Fri Sat Sun

Instead of:

<< MARCH >>
Mo Tue Wed Thu Fri Sat Sun
1 2 3 4 5 6 7 8 9
10 11 12 13 14 15
....

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android";
    android:layout_width="match_parent"
    android:layout_height="match_parent" >

    <com.tyczj.extendedcalendarview.ExtendedCalendarView
        android:id="@+id/calendar"
        android:layout_height="match_parent"
        android:layout_width="match_parent"/>

</RelativeLayout>


Should I initialize something else in the app to get a full view of the 
calendar? Additionaly I call in the activity class the code below. It does 
nothing but just want to show what I have done.

ExtendedCalendarView extendedCalendarView = 
(ExtendedCalendarView)findViewById(R.id.calendar);

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/2c107e09-cb5f-4938-8694-62f6c19536d7%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to