Hi I have implemented my own calendar using the help of Custom Android Calendar Now I am implement the scroll up and down view for getting previous or next months calendar similar to CalendarView API. I am sure this possible as it can be done through calendarView.
Can somebody direct me to right page to implement this? Do I need Gestures or scrollView?
If I use ScrollView inside the gridview - I am not able to get the calendar properly the view gets cut automatically!
<ScrollView
android:id="@+id/scrollview"
android:layout_width="match_parent"
android:layout_height="match_parent" >
<GridView
android:id="@+id/gridview"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_below="@+id/header"
android:layout_gravity="center_horizontal"
android:listSelector="@android:color/transparent"
android:numColumns="7"
android:stretchMode="columnWidth" />
</ScrollView>
Let me know!