Loading packages/SystemUI/src/com/android/systemui/recent/RecentsPanelView.java +6 −2 Original line number Diff line number Diff line Loading @@ -682,8 +682,12 @@ public class RecentsPanelView extends FrameLayout implements OnItemClickListener | Intent.FLAG_ACTIVITY_TASK_ON_HOME | Intent.FLAG_ACTIVITY_NEW_TASK); if (DEBUG) Log.v(TAG, "Starting activity " + intent); try { context.startActivityAsUser(intent, opts, new UserHandle(UserHandle.USER_CURRENT)); } catch (SecurityException e) { Log.e(TAG, "Recents does not have the permission to launch " + intent, e); } } if (usingDrawingCache) { holder.thumbnailViewImage.setDrawingCacheEnabled(false); Loading Loading
packages/SystemUI/src/com/android/systemui/recent/RecentsPanelView.java +6 −2 Original line number Diff line number Diff line Loading @@ -682,8 +682,12 @@ public class RecentsPanelView extends FrameLayout implements OnItemClickListener | Intent.FLAG_ACTIVITY_TASK_ON_HOME | Intent.FLAG_ACTIVITY_NEW_TASK); if (DEBUG) Log.v(TAG, "Starting activity " + intent); try { context.startActivityAsUser(intent, opts, new UserHandle(UserHandle.USER_CURRENT)); } catch (SecurityException e) { Log.e(TAG, "Recents does not have the permission to launch " + intent, e); } } if (usingDrawingCache) { holder.thumbnailViewImage.setDrawingCacheEnabled(false); Loading