I have created a Popup window which contains month view to pick up date. When I changes orientation, due to Android loads an activity all over again my popup Window gets dis
Add this property to your activity in manifest.xml
android:configChanges="orientation|keyboard"
and that should do it.