Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question
2  
what you doing in onCreate() or onResume() of Activity? – hotveryspicy Nov 22 '12 at 5:28
1  
I don't think that these will create delay. Is your activity layout has too much of data/images? – AnhSirk Dasarp Nov 22 '12 at 5:28
Post your activity code. if onCreate takes more time to finish, you will face a delay – Atrix1987 Nov 22 '12 at 5:35
@AnhSirkDasarp : yes my activity layout has too much of data/images. – PAD Nov 22 '12 at 5:35

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.