Issue 2471: SystemUI never receive "com.android.systemui.recent.action.CANCEL_PRELOAD" broadcast.
Status:  Invalid
Owner: ----
Closed:  Feb 2014
Reported by csumi...@gmail.com, Feb 13, 2014
Dear:
 AndroidManifest.xml in SystemUI, the "CANCEL_PRELOAD" action is written like this:

         <receiver
            android:name=".recent.RecentsPreloadReceiver"
            android:exported="false">
            <intent-filter>
                <action android:name="com.android.systemui.recent.action.PRELOAD" />
                <action android:name="com.android.systemui.recent.action.CANCEL_PRELOAD" />
            </intent-filter>
        </receiver>

but in com.android.systemui.recent.RecentsActivity file, the "CANCEL_PRELOAD" seems different:

    public static final String CANCEL_PRELOAD_INTENT = "com.android.systemui.recent.CANCEL_PRELOAD";

That meams "com.android.systemui.recent.RecentsPreloadReceiver" never receive the "CANCEL_PRELOAD" broadcast.

So, on some conditions, it will casue "java.util.concurrent.RejectedExecutionException: Task android.os.AsyncTask rejected from java.util.concurrent.ThreadPoolExecutor".

Feb 14, 2014
Project Member #1 david.pu...@sonymobile.com
This is the issue tracker for Gerrit Code Review, not Android.
Status: Invalid