Posts

Showing posts with the label Calendar

Custom Calendar in android

Image
Custom calendar is very important part in android . Using custom calendar we can easily customize calendar activity as per our requirements . I am describing how to create a custom calendar in android  . Its very easy to integrate in eclipse as well as studio. I hope it will help you a lot . For create a custom calendar you have to follow these bellow steps . The steps are 1.   Create a shape file  " circile_cyan.xml " in your drawable folder .        <?xml version="1.0" encoding="utf-8"?> <shape xmlns:android="http://schemas.android.com/apk/res/android"     android:shape="oval" >     <solid android:color="#00FFFF" >     </solid> </shape> 2.   Create a shape file  " circile_grey.xml " in your drawable folder . <?xml version="1.0" encoding="utf-8"?> <shape xmlns:android="http://schemas.android.com/apk/res/android" ...