I have googled at bit and saw few people it had happened to them,
but i'm not sure how to fix this:
I have an android Activity and when i rotate my device
only onCreate()
is called, no onConfigurationChanged()
.
when does this happen?
my activity declaration from my manifest:
<activity
android:name=".reports.MyActivity"
android:configChanges="orientation|keyboardHidden"
android:theme="@android:style/Theme.NoTitleBar" />
<uses-sdk
android:minSdkVersion="8"
android:targetSdkVersion="17" >
</uses-sdk>