I am facing strange behaviour while calling activity from broadcast receiver class. Activity takes 2-3 sec to initialize. When i try to debug it shows that activity takes time in "super.onCreate(savedInstanceState);" method. In my menifest file i have declared activity with some required flags, as stated below.
<activity
android:name="MyActivity"
android:clearTaskOnLaunch="true"
android:configChanges="keyboard|keyboardHidden"
android:excludeFromRecents="true"
android:label="Keyguard"
android:launchMode="singleTask"
android:screenOrientation="portrait"
android:stateNotNeeded="true"
android:taskAffinity=":.my_task"
android:theme="@android:style/Theme.Translucent.NoTitleBar"
android:windowSoftInputMode="stateUnspecified|adjustPan" >
Can any one suggest me how can I avoid delay?
onCreate()oronResume()of Activity? – hotveryspicy Nov 22 '12 at 5:28