i am invoking an activity using intent from main activity. But during the invocation few system dialog boxes are displayed because of which a black screen is displayed. How can i avoid such black screen.
i am invoking an activity using intent from main activity. But during the invocation
Share
Please check the flags you are setting in your intent.
If you have a finish(); or FLAG_ACTIVITY_CLEAR_TASK – a blank screen may show up on pre ICS devices as the current activity has been cleared before another activity is started.