| Issue 2471: | SystemUI never receive "com.android.systemui.recent.action.CANCEL_PRELOAD" broadcast. | |
| 1 person starred this issue and may be notified of changes. | Back to list |
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
Status:
Invalid
|
|
| ► Sign in to add a comment |